Advertisement
iPxter

Untitled

Dec 30th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. -- Walkspeed/Variables/Remover
  2.  
  3. plr=game:service'Players'.LocalPlayer
  4. ch=plr.Character
  5. ch.Humanoid.WalkSpeed=30
  6. head=ch.Head
  7. torso=ch.Torso
  8. ra=ch:findFirstChild("Right Arm")
  9. ll=ch:findFirstChild("Left Leg")
  10. la=ch:findFirstChild("Left Arm")
  11. rl=ch:findFirstChild("Right Leg")
  12. head.face:Remove()
  13. ch.Shirt:Remove()
  14. ch.Pants:Remove()
  15. torso=ch.Torso
  16.  
  17. -- Transparency
  18.  
  19. torso.Transparency = 0
  20. head.Transparency = 0
  21. ra.Transparency = 0
  22. ll.Transparency = 0
  23. la.Transparency = 0
  24. rl.Transparency = 0
  25. Instance.new("ForceField", ch).Visible = false
  26.  
  27. -- Materializer
  28.  
  29. torso.Material = "Neon"
  30. head.Material = "Neon"
  31. ra.Material = "Neon"
  32. ll.Material = "Neon"
  33. la.Material = "Neon"
  34. rl.Material = "Neon"
  35.  
  36. -- Selection Boxes
  37.  
  38. Instance.new("SelectionBox", torso)
  39. Instance.new("SelectionBox", ra)
  40. Instance.new("SelectionBox", la)
  41. Instance.new("SelectionBox", rl)
  42. Instance.new("SelectionBox", ll)
  43.  
  44. -- Color Changer
  45.  
  46. while true do
  47. torso.Color = Color3.new(math.random(), math.random(), math.random())
  48. ll.Color = Color3.new(math.random(), math.random(), math.random())
  49. rl.Color = Color3.new(math.random(), math.random(), math.random())
  50. la.Color = Color3.new(math.random(), math.random(), math.random())
  51. ra.Color = Color3.new(math.random(), math.random(), math.random())
  52.  
  53. wait(0.00000000000000000000000000001)
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement