Advertisement
foxywolf233

Z To Sit

Dec 16th, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local m = game.Players.LocalPlayer:GetMouse()
  2. m.KeyDown:connect(function(k)
  3. if k:lower() == "z" then --You change this to whatever you want
  4. local c = game.Players.LocalPlayer.Character
  5. if c then
  6. local h = c:findFirstChild("Humanoid")
  7. if h then h.Sit = not h.Sit
  8. end
  9. end
  10. end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement