Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local m = game.Players.LocalPlayer:GetMouse()
- m.KeyDown:connect(function(k)
- if k:lower() == "z" then --You change this to whatever you want
- local c = game.Players.LocalPlayer.Character
- if c then
- local h = c:findFirstChild("Humanoid")
- if h then h.Sit = not h.Sit
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement