#Need a script

15 messages · Page 1 of 1 (latest)

last perch
#

I can do that

#
local gui = script.Parent --Set it's location here

UIS.InputBegan:Connect(function(Key)
    if Key.KeyCode == Enum.KeyCode.V then
        if gui.Enabled == false then
            gui.Enabled = true
        elseif gui.Enabled == true then
            gui.Enabled = false
        end
    end
end)```
#

place this in a local script somewhere in starter gui

crimson pecan
#

better to do

#
local UIS = game:GetService("UserInputService")
local gui = script.Parent --Set it's location here

UIS.InputBegan:Connect(function(Key)
    if Key.KeyCode == Enum.KeyCode.V then
        gui.Enabled = not gui.Enabled
    end
end)
#

wait

last perch
#

so

#

what I did?

crimson pecan
#

no ur script is good

last perch
#

how did u get colors-

crimson pecan
#

but mine is smaller 💀

last perch
#

ah

#

I see

pure zenith
#
const