EFTPMC

RemoveSeat

Jan 10th, 2021
2,725
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  2. game:GetService("UserInputService").InputBegan:Connect(function(Key,F)
  3. if Key.KeyCode == Enum.KeyCode.F then
  4. if mouse.Target and mouse.Target:IsA("Seat") then
  5. mouse.Target:Sit(game:GetService("Players").LocalPlayer.Character.Humanoid)
  6. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0
  7. mouse.Target:Sit(game:GetService("Players").LocalPlayer.Character.Humanoid)
  8. end
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment