Advertisement
Gotmilk0086

Untitled

Sep 16th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. angry = false -- ignore pls
  2. wait(2)
  3. normal = "http://www.roblox.com/asset/?id=2178100649"
  4. lp = game:GetService("Players").Animetaional_Clone -- change ur name of course
  5. char = lp.Character
  6. gc = char:GetChildren()
  7. for i=1, #gc do
  8. if gc[i].ClassName == "Part" then
  9. gc[i].Transparency = 1
  10. if gc[i]:FindFirstChildOfClass("Decal") then
  11. gc[i]:FindFirstChildOfClass("Decal"):Destroy()
  12. end
  13. end
  14. if gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "Hat" or gc[i].ClassName == "Accessory" or gc[i].ClassName == "ShirtGraphic" or gc[i].ClassName == "ShirtGraphics" then
  15. gc[i]:Destroy()
  16. end
  17. end
  18. decalpart = Instance.new("Part",workspace)
  19. decalpart.Size = Vector3.new(4,4.5,0.1)
  20. decalpart.Anchored = true
  21. decalpart.CanCollide = false
  22. decalpart.Transparency = 1
  23. decalpart.Parent = char
  24. decal1 = Instance.new("Decal",decalpart)
  25. decal1.Face = Enum.NormalId.Front
  26. decal1.Texture = "http://www.roblox.com/asset/?id=2183824696"
  27. decal2 = Instance.new("Decal",decalpart)
  28. decal2.Face = Enum.NormalId.Back
  29. decal2.Texture = "http://www.roblox.com/asset/?id=2183828557"
  30.  
  31.  
  32. decalpart.Touched:connect(function(hit)
  33. if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= char and hit.Parent.Parent ~= char then
  34. if angry then
  35. hit:BreakJoints()
  36. end
  37. end
  38. end)
  39.  
  40. while true do
  41. wait(0.01)
  42. decalpart.CFrame = char.Head.CFrame - Vector3.new(0,2.8,0)
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement