Advertisement
BlueberriezAndPie

Glowing Player

Aug 21st, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr)
  2.  
  3. plr.CharacterAdded:connect(function(char)
  4.  
  5. local a = Instance.new("PointLight", char.Head)
  6.  
  7. a.Range = x --Replace x with how far you want the glow to be
  8.  
  9. a.Brightness = x --Replace x with how bright you want it to be
  10.  
  11. a.Color = Color3.new(x, x, x) --Set the color you want it to be (RGB value divided by 255)
  12.  
  13. a.Shadows = true --Do you want the light to be seen through bricks?
  14.  
  15. end)
  16.  
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement