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

smoke on vip's body, script not working?

Asked by
DanzLua 2879 Moderation Voter Community Moderator
10 years ago

Hi, i'm trying to use a script to give player's with a certain gamepass smoke on there torso. i am currently using this script.

01local GamePassService = Game:GetService('GamePassService')
02local GamePassIdObject = WaitForChild(script, 'GamePassId')
03 
04local function OnCharacterAdded(char)
05    local smoke = Instance.new("Smoke", char:WaitForChild("Torso"))
06    smoke.Color = Color3.new(1, 0, 0) -- red, remember to use 0-1 and not 0-255. If you want to use 0-255, just make sure to divide each number by 255.
07    smoke.Size = 5
08end
09 
10local function OnPlayerAdded(player)
11    if GamePassService:PlayerHasPass(player, GamePassIdObject.Value) then
12        player.CharacterAdded:connect(OnCharacterAdded)
13    end
14end
15 
16Game:GetService("Players").PlayerAdded:connect(OnPlayerAdded)

the problem is when i run this it doesn't work, here's the output

01:06:12.470 - Workspace.vip smoke:2: attempt to call global 'WaitForChild' (a nil value) 01:06:12.471 - Stack Begin 01:06:12.472 - Script 'Workspace.vip smoke', Line 2 01:06:12.472 - Stack End

Thanks.

Answer this question