local x = Instance.new("ParticleEmitter")
x.texture = "http://www.roblox.com/asset/?id=149185718"
x.parent = RArm
x.NumberSequence.size = 5
x.NumberRange.speed = 5
x.NumberRange.LifeTime = 0.3
------it's won't make fire on the right arm
is RArm a variable? If not, this should be the script!
1 | local RArm = game.Players.LocalPlayer.Character [ "RightArm" ] |
2 | local x = Instance.new( "ParticleEmitter" ) |
3 | x.Texture = "http://www.roblox.com/asset/?id=149185718" |
4 | x.Parent = RArm |
5 | x.NumberSequence.Size = 5 |
6 | x.NumberRange.Speed = 5 |
7 | x.NumberRange.LifeTime = 0.03 |
Closed as Too Broad by Async_io and M39a9am3R
This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.
Why was this question closed?