Hi
I have a problem and i can't figure it out. How can you add a particle emitter to the torso of the players and the other question is how can i only activate the particle emitter when the player is running on walkspeed 30?
Here is what i got
1 | local speed = Instance.new( "ParticleEmitter" ,game.Workspace.player.Torso) |
2 | speed.Texture = "http://www.roblox.com/asset/?id=281983189" |
3 | speed.Size = NumberSequence.new( 3 ) |
4 | speed.LightEmission = 1 |
5 | speed.Color = ColorSequence.new( 100 , 11 , 11 ) |
6 | speed.Acceleration = 1 , 1 , 1 |
7 | speed.Lifetime = NumberRange.new( 1 ) |
8 | speed.Speed.Value = 5 |
01 | local plr = game.Players.LocalPlayer |
02 |
03 | local char = plr.Character |
04 |
05 | local hum = char.Humanoid |
06 |
07 | hum.Running:connect( function (speed) |
08 | if speed > 30 then |
09 |
10 | -- DO STUFF: |
11 |
12 | else |
13 |
14 | -- DO STUFF: |
15 |
16 | end |
17 | end |
That would be the solution to your problem.
I hope with this you can set up and adapt your script to it.
Remember Humanoid has a Running
event.