of     1   

drysty
#228395515Sunday, December 03, 2017 8:04 PM GMT

how to function pls just need start
bigboy77584
#228395799Sunday, December 03, 2017 8:09 PM GMT

http://wiki.roblox.com/index.php?title=ContextActionService_tutorial or http://wiki.roblox.com/index.php?title=API:Class/UserInputService UserInputService is more popular. The events you'll most likely need for it are InputBegan, InputChanged, and InputEnded.
SatanxD666
#228397019Sunday, December 03, 2017 8:32 PM GMT

if key == “” then — in between the “” put whichever key — write ur code here end or if Enum.KeyCode.Key then — in “Key” put whichever key u want — write ur code here end
Skull_LDS
#228399209Sunday, December 03, 2017 9:18 PM GMT

In local script: plr = game.Players.LocalPlayer mouse = plr:GetMouse() mouse.KeyDown:connect(function(key) if key == "x" then -- do stuff end end)
ScriptBased
#228400752Sunday, December 03, 2017 9:50 PM GMT

KeyDown is deprecated Use UserInputService

    of     1