Advertisement
RGames

ROBLOX - Turn Player into Test Dummy

Jul 13th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. target = 'RGames1234' -- put the target here and make sure they have a shirt (not a t-shirt) and pants on
  2. warn('Turning '..target..' into a Test Dummy...')
  3. wait(3)
  4. local player = game.Players:FindFirstChild(target)
  5. local character = player.Character
  6. if character:FindFirstChild('Shirt') and character:FindFirstChild('Pants') then
  7. --character.Name = 'Test Dummy #'..math.random(1,9999)
  8. for _,v in pairs(character:GetChildren()) do
  9. if v:IsA('Part') or v:IsA('MeshPart') then
  10. v.BrickColor = BrickColor.new("New Yeller")
  11. end
  12. end
  13. character.Shirt.ShirtTemplate = 'rbxassetid://232468047'
  14. character.Pants.PantsTemplate = 'rbxassetid://31890165'
  15. character.Humanoid.JumpPower = 0
  16. character.Humanoid.MaxHealth = 5000
  17. character.Humanoid.Health = 5000
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement