[FREE] [STANDALONE] Interact Pulsing UI

DOWNLOAD FROM:
github.com
vames.tebex.io

FEATURES:

  • Simple UI
  • Pulsing key animation

:anger: You can check my others scripts :anger:
vms_bank
vms_pausemenu
vms_skydiving
vms_races
vms_drivingschool
vms_boatschool
vms_flyingschool
vms_notify
vms_shops
vms_redeem
vms_garage
vms_jobcenter
vms_subway

9 Likes

Read the rules:
Free releases: Releases that are released for free must contain a direct download and may not be Escrow protected, you may include a Tebex link but it may not be the only download.

2 Likes

how can i download this it doesnt have any register in that link to login and download the script

Ok, thanks for the information, the previous free script I shared like this and there were no problems, I have already added to github as well.

1 Like

How can i use the export?

1 Like

exports["interact"]:Open("KEY", "MESSAGE")

exports["interact"]:Close()

does anyone have an example of how to do that? inserts at esx_vehicleshop for instance?

hey, you can implement the interact like this:

Citizen.CreateThread(function()
    local inRange = false
    local shown = false
    while true do
       inRange = false
       local myPed = PlayerPedId()
       local myCoords = GetEntityCoords(myPed)
       local targetCoords = vec(x, y, z)
       local distance = #(myCoords - targetCoords)
       if distance < 1.5 then
           inRange = true
           if IsControlJustPressed(0, 38) then
             inRange = false
             TriggerServerEvent("example")
          end
       end
       if inRange and not shown then
            shown = true
            exports["interact"]:Open("E", "Vehicle shop")
        elseif not inRange and shown then
            shown = false
            exports["interact"]:Close()
        end
       Citizen.Wait(1)
    end
end)
1 Like

Hey how can i put that with qb-target?

Hello, I wanted to ask how this can be implemented in other scripts, e.g. the admissions office script from Ghostscripts. Since unfortunately there is no specific tutorial or description, I’m asking here.

Hi its not working for me, error no such export open

And where ?

Does somone know how to change esx_notify to this? so it will work in all scripts?