Advertisement
UhhLegoboy

NEBBY

Jan 24th, 2017
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. wait(0)
  2. player = game.Players.LocalPlayer
  3. char = player.Character
  4. extension = "rbxassetid://"
  5. p = char.Torso
  6.  
  7. sound = Instance.new("Sound", char.Torso)
  8. sound.SoundId = extension .. "554385392"
  9. sound.Looped = true
  10. sound : play()
  11.  
  12. char.Head.face.Texture = extension .. "0"
  13. char.Humanoid.MaxHealth = 1000
  14. char.Humanoid.Health = 1000
  15.  
  16. Shirt = char.Shirt
  17. Pants = char.Pants
  18. Shirt.ShirtTemplate = extension .. "597431306"
  19. Pants.PantsTemplate = extension .. "597463255"
  20.  
  21. char.Head.Transparency = 1
  22.  
  23. --remove
  24. char ["Shirt Graphic"].Graphic = "rbxassetid://0"
  25. for _, child in pairs(char:GetChildren()) do
  26. if child.ClassName == 'Accessory' then
  27. child:Destroy()
  28. end
  29. end
  30. char.Torso.Touched:connect(function(p)
  31. if p.Parent then
  32. if p.Parent:IsA("Model") then
  33. if game.Players:FindFirstChild(p.Parent.Name) then
  34. if p.Parent.Name ~= game.Players.LocalPlayer.Name then
  35. game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
  36. end
  37. end
  38. end
  39. end
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement