smoke on vip's body, script not working?
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.
01 | local GamePassService = Game:GetService( 'GamePassService' ) |
02 | local GamePassIdObject = WaitForChild(script, 'GamePassId' ) |
04 | local function OnCharacterAdded(char) |
05 | local smoke = Instance.new( "Smoke" , char:WaitForChild( "Torso" )) |
06 | smoke.Color = Color 3. new( 1 , 0 , 0 ) |
10 | local function OnPlayerAdded(player) |
11 | if GamePassService:PlayerHasPass(player, GamePassIdObject.Value) then |
12 | player.CharacterAdded:connect(OnCharacterAdded) |
16 | Game: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.