derekiscool423

neon glow

Dec 11th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. color = "Lime green" -- Use the brickcolor method, such as "Lime green", etc
  3. for i,v in pairs(game.Players[plr].Character:GetChildren()) do
  4. if v:isA("Shirt") then
  5. v:Destroy()
  6. end
  7. if v:isA("Pants") then
  8. v:Destroy()
  9. end
  10. if v:isA("Part") then
  11. v.Material = 'Neon'
  12. v.BrickColor = BrickColor.new(color)
  13. end
  14. end
  15. game.Players[plr].Character.Head.Mesh:Destroy()
Add Comment
Please, Sign In to add comment