Advertisement
memberhero

script

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