Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- local Character = LocalPlayer.Character
- -- Destroy the character's pants and shirt
- Character.Pants:Destroy()
- Character.Shirt:Destroy()
- -- Set the character's walk speed and jump power to 24
- local Humanoid = Character.Humanoid
- Humanoid.WalkSpeed = 24
- Humanoid.JumpPower = 24
- -- Load and play an animation
- local Animation = Instance.new("Animation")
- Animation.AnimationId = "rbxassetid://54144120"
- local AnimationTrack = Humanoid:LoadAnimation(Animation)
- AnimationTrack:Play()
- AnimationTrack:AdjustSpeed(15)
Advertisement
Add Comment
Please, Sign In to add comment