Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Active = false
- local PLAYERSERVICE = game.Players.CharcoalBurns()
- for i=1, #PLAYERSERVICE do
- local MOUSESERVICE = PLAYERSERVICE[i]:GetMouse()
- MOUSESERVICE.KeyDown:connect(function(key)
- if key == "q" then -- Change to the key you want.
- Active = true
- if Active == true then
- Text.Visible = true
- end
- end
- end)
- MOUSESERVICE.KeyUp:connect(function(key)
- if key == "q" then
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment