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

Number sequence error when I try to make the Particle emitter go invis?

Asked by
bt6k 23
4 years ago

Somethings wrong with my script, I don't know..

01local UserInputService = game:GetService("UserInputService")
02local plr = game.Players.LocalPlayer
03local char = plr.Character or plr.CharacterAdded:Wait()
04local charname = char.Name
05 
06 
07if plr.Team == game.Teams.ISD then
08    UserInputService.InputBegan:Connect(function(input)
09    if input.KeyCode == Enum.KeyCode.E then
10        local cloneSmoke = game.Lighting.Smoke:Clone()
11        cloneSmoke.Parent = char.UpperTorso
12        wait(1)
13        char.UpperTorso.Smoke.Transparency = 1
14 
15    end
16end)
17end

It is giving me the error...

Workspace.bt6k.LocalScript:13: bad argument #3 (NumberSequence expected, got number)

1 answer

Log in to vote
0
Answered by 4 years ago

Wrong type of value. You have to use the table NumberSequence to change a property. Refer to https://developer.roblox.com/en-us/articles/Particle-Emitters . Sample:

1local a = Instance.new("Part")
2a.Parent = workspace
3local b = Instance.new("ParticleEmitter",a)
4b.Transparency = NumberSequence.new(1) --note: this makes the particles invisible
Ad

Answer this question