#Need a script
15 messages · Page 1 of 1 (latest)
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
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
no ur script is good
how did u get colors-
const