Advertisement
memberhero

script2

Dec 11th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. --Specimen 11 script by basstracker1970
  2. wait(1)
  3. plr = game.Players.LocalPlayer
  4. char = plr.Character
  5. for i,v in pairs(char:children()) do
  6. if v:IsA("Accessory") then
  7. v:Destroy()
  8. end
  9. end
  10. wait(1)
  11. sound = Instance.new("Sound")
  12. sound.Name = "Theme"
  13. sound.SoundId = "rbxassetid://1034522734"
  14. sound.Looped = true
  15. sound.Parent = char
  16. sound:Play()
  17. hat = Instance.new("Hat")
  18. hat.Parent = plr.Character
  19. hatpart = Instance.new("Part")
  20. hatpart.Name = "Handle"
  21. hatpart.Parent = hat
  22. mesh = Instance.new("SpecialMesh")
  23. mesh.MeshId = "rbxassetid://15934744"
  24. mesh.TextureId = "rbxassetid://15934762"
  25. mesh.Parent = hatpart
  26. fire = Instance.new("Fire")
  27. fire.Parent = char.Head
  28. char.Head.BrickColor = BrickColor.new("Really red")
  29. char.Torso.BrickColor = BrickColor.new("Really red")
  30. char["Left Arm"].BrickColor = BrickColor.new("Really red")
  31. char["Right Arm"].BrickColor = BrickColor.new("Really red")
  32. char["Left Leg"].BrickColor = BrickColor.new("Really red")
  33. char["Right Leg"].BrickColor = BrickColor.new("Really red")
  34. char.Torso.Touched:connect(function(hit)
  35. if hit.Parent:FindFirstChild("Humanoid") then
  36. hit.Parent:BreakJoints()
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement