Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- repeat wait() until game.Players.LocalPlayer
- local player = script.Parent.Parent
- local mouse = player:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "m" then
- player.Character.Humanoid.Sit=true
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key == "m" then
- player.Character.Humanoid.Sit=false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement