Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. local plr = game:GetService("Players").iComboPE
  2. game.Players.iComboPE.Character.Parent = Terrain
  3.  
  4.  
  5. touchCounter = 0
  6. while wait() do
  7. if plr.Character.Parent = Terrain then
  8. local c = plr.Character:Clone()
  9. c:MakeJoints()
  10. for y,t in pairs(c:GetChildren()) do
  11. if t:IsA("Part") then
  12. t.CanCollide = false
  13. t.Anchored = true
  14. t.Transparency = .5
  15. t.TopSurface = "Smooth"
  16. t.BottomSurface = "Smooth"
  17. t.RightSurface = "Smooth"
  18. t.LeftSurface = "Smooth"
  19. t.FrontSurface = "Smooth"
  20. t.BackSurface = "Smooth"
  21. t.BrickColor = BrickColor.new("Really black")
  22. if t.Name == "Head" and t:FindFirstChild("face") then
  23. t.face:Remove()
  24. elseif t.Name == "Torso" and t:FindFirstChild("roblox") then
  25. t.roblox:Remove()
  26. elseif t.Name == "HumanoidRootPart" then
  27. t:Remove()
  28. end
  29. else
  30. t:Remove()
  31. end
  32. end
  33. c.Parent = Terrain
  34. game.Debris:AddItem(c,.05)
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement