So my emitters work now, but the texture and the size won't change to what I want it to be? Here is the code.
Cash = Instance.new("ParticleEmitter") Cash.Parent = game.Workspace.XxmanwolfxX.Head2 Cash.Size.Value = 1.5 Cash.Transparency.Value = 0 Cash.LightEmission.Value = 0 Cash.Color.Value = 255,255,255 Cash.Acceleration.Value = 0,5,0 Cash.Lifetime.Min.Value = 1 Cash.Lifetime.Max.Value = 1 Cash.Speed.Value = 5 Cash.Texture.Value = "http://www.roblox.com/asset/?id=217001241"
You're indexing 'Value' when setting the properties of the ParticleEmitter,
Like LegitimatelyMe said, you're setting the properties with incorrect datatypes.
Don't index Value when setting properties, just set the property to the value.
NumberSequences
.NumberRange
.ColorSequence
.local Cash = Instance.new("ParticleEmitter",workspace.XxmanwolfxX.Head2) Cash.Size = NumberSequence.new(1.5) Cash.Transparency = NumberSequence.new(0) Cash.LightEmission = 0 Cash.Color = 255,255,255 Cash.Acceleration = 0,5,0 Cash.Lifetime = NumberRange.new(1) Cash.Speed = 5 Cash.Texture = "http://www.roblox.com/asset/?id=217001241"
the Size and Transparency Property is a NumberSequence
Lifetime is a NumberRange
Color is a ColorSeqeunce
The Texture is fine, but it won't get to that line because of errors.