Here is the code:
local heat=Instance.new("PointLight") heat.Range=20 heat.Brightness=10
The Color3 Scale goes by numbers out of 255.. Must be a fraction.
local heat = Instance.new("PointLight",Parent) heat.Range = 20 heat.Brightness = 10 heat.Color = Color3.new(255/255,255/255,255/255)
Since 255/255 is equal to 1 whole then it can also be put as this;
heat.Color = Color3.new(1,1,1)
That would make the light white.
The first argument is Red, second Blue, third Green ~ RBG
Hope I Helped
+1
I presume it'd work by
local heat=Instance.new("PointLight") heat.Range=20 heat.Brightness=10 heat.Color=[255,255,255]
If that doesn't work, change the square brackets to your normal brackets. If that doesn't work, remove the brackets. If that doesn't work, wait for another response.