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

my particle emitter won't work i want to make fire on my arms but it just won't? [closed]

Asked by 7 years ago

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

0
Make sure you're using Lua block, and make sure you give us more information. We don't know what you're trying to do, as well as we don't know what the error might be. Async_io 908 — 7y

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?

1 answer

Log in to vote
-1
Answered by 7 years ago

is RArm a variable? If not, this should be the script!

local RArm = game.Players.LocalPlayer.Character["RightArm"]
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.03
Ad