Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible to link a script with a localscript?

Asked by 9 years ago

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

01Script:
02game.Players.PlayerAdded:connect(function(player)
03    player.CharacterAdded:connect(function(char)
04        if char then
05            local torso = char:FindFirstChild'Torso'
06            local speed2 = Instance.new("ParticleEmitter", torso)
07        end
08    end)
09end)
10 
11Localscript:
12 
13local plr = game.Players.LocalPlayer
14 
15local char = plr.Character
View all 42 lines...

Answer this question