Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- target = 'RGames1234' -- put the target here and make sure they have a shirt (not a t-shirt) and pants on
- warn('Turning '..target..' into a Test Dummy...')
- wait(3)
- local player = game.Players:FindFirstChild(target)
- local character = player.Character
- if character:FindFirstChild('Shirt') and character:FindFirstChild('Pants') then
- --character.Name = 'Test Dummy #'..math.random(1,9999)
- for _,v in pairs(character:GetChildren()) do
- if v:IsA('Part') or v:IsA('MeshPart') then
- v.BrickColor = BrickColor.new("New Yeller")
- end
- end
- character.Shirt.ShirtTemplate = 'rbxassetid://232468047'
- character.Pants.PantsTemplate = 'rbxassetid://31890165'
- character.Humanoid.JumpPower = 0
- character.Humanoid.MaxHealth = 5000
- character.Humanoid.Health = 5000
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement