I want a spotlight around my character. I need it asap because of an event that I will need to start soon. Basically, I need to be able to paste it into console and a spotlight will appear on my character, which creates the spotlight effect like on a show. Please help?
Simply place this script in ServerScriptService, change some of the light settings to your preference. and it'll automatically add a light to the player
01 | game.Players.PlayerAdded:Connect( function (Player) |
02 | Player.CharacterAdded:connect( function (char) |
03 | local light = Instance.new( "SpotLight" ) |
04 | light.Parent = char.Torso -- Leave this be |
05 | light.Brightness = 30 -- Change this to your preference |
06 | light.Enabled = true -- Leave this one be |
07 | light.Face = "Top" -- leave this one be |
08 | light.Range = 30 -- Choose the rage from 0 - 60 |
09 | light.Color = Color 3. fromRGB( 255 , 255 , 255 ) -- Change this to the color you want. |
10 | light.Shadows = false -- Set this to false or true |
11 | light.Angle = 180 -- Leave this one be |
12 | end ) |
13 | end ) |
Please:
Anyway, if you want the effect in-game. Then in F9 GUI, you should do something like this:
1 | local S = Instance.new( 'Sparkles' ) |
2 | S.Parent = game.Username.Character:WaitForChild( 'Torso' ) |
or you can add Particle Emitter, that is up to you. I can't give you a clear answer as you didn't explain in detail. Though I have attempted to help you.
Comment if that is what you meant.
If this helped in some sort of way please Upvote and Accept answer
-- Your orange, BlackOrange3343