Is it possible to link a script with a localscript?
Hello,
My question is is it possible to link a script with a localscript because i have a code in a script and a localscript but i need to link them to get it to work can someone help me with this
02 | game.Players.PlayerAdded:connect( function (player) |
03 | player.CharacterAdded:connect( function (char) |
05 | local torso = char:FindFirstChild 'Torso' |
06 | local speed 2 = Instance.new( "ParticleEmitter" , torso) |
13 | local plr = game.Players.LocalPlayer |
15 | local char = plr.Character |
17 | local hum = char.Humanoid |
19 | local color 1 = Color 3. new( 255 , 82 , 2 ) |
21 | local color 2 = Color 3. new( 255 , 72 , 0 ) |
23 | local speed 2 = Instance.new( "ParticleEmitter" , torso) |
25 | hum.Running:connect( function (speed) |
29 | speed 2. Size = NumberSequence.new( 5 ) |
30 | speed 2. LightEmission = 0.62 |
31 | speed 2. Color = ColorSequence.new(color 1 ,color 2 ) |
32 | speed 2. Lifetime = NumberRange.new( 0 , 5 ) |
37 | speed 2. Size = NumberSequence.new( 0 ) |
38 | speed 2. LightEmission = 0 |
39 | speed 2. Color = ColorSequence.new(color 1 ,color 2 ) |
40 | speed 2. Lifetime = NumberRange.new( 1 ) |