Guest User

Untitled

a guest
Mar 19th, 2023
996
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 1 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3. local Character = LocalPlayer.Character
  4.  
  5. -- Destroy the character's pants and shirt
  6. Character.Pants:Destroy()
  7. Character.Shirt:Destroy()
  8.  
  9. -- Set the character's walk speed and jump power to 24
  10. local Humanoid = Character.Humanoid
  11. Humanoid.WalkSpeed = 24
  12. Humanoid.JumpPower = 24
  13.  
  14. -- Load and play an animation
  15. local Animation = Instance.new("Animation")
  16. Animation.AnimationId = "rbxassetid://54144120"
  17. local AnimationTrack = Humanoid:LoadAnimation(Animation)
  18. AnimationTrack:Play()
  19. AnimationTrack:AdjustSpeed(15)
Advertisement
Add Comment
Please, Sign In to add comment