hello i want to make a particle emitter on the torso of the players but i only get it in studio how can i fix this issue?
this is what i have
1 | local speed 2 = Instance.new( "ParticleEmitter" ,Workspace.Player 1. torso) |
Well first it would be a good idea to make sure the Player and it's character have loaded in. Then you'd be able to implement a particle emitter into the torso
Here is a fast and efficient way of completing the statement above:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | player.CharacterAdded:connect( function (char) |
3 | if char then |
4 | local torso = char:FindFirstChild 'Torso' |
5 | local speed 2 = Instance.new( "ParticleEmitter" , torso) |
6 | end |
7 | end ) |
8 | end ) |
Note: This should be put in a Script
, not a Localscript