Hi, i'm trying to add smoke to player's torso when players who have bought my vip gamepass have joined the game. i am currently using this script but i am not done with it.
1 | local GamePassService = Game:GetService( 'GamePassService' ) |
2 | local GamePassIdObject = WaitForChild(script, 'GamePassId' ) |
3 |
4 | local function OnPlayerAdded(player) |
5 | if GamePassService:PlayerHasPass(player, GamePassIdObject.Value) then |
6 | --script that adds smoke to the body here |
7 | end |
You'd then use the CharacterAdded
event of the Player
to create a new smoke instance inside of the character's torso every time the player spawns.
01 | local GamePassService = Game:GetService( 'GamePassService' ) |
02 | local GamePassIdObject = WaitForChild(script, 'GamePassId' ) |
03 |
04 | local function OnCharacterAdded(char) |
05 | local smoke = Instance.new( "Smoke" , char:WaitForChild( "Torso" )) |
06 | smoke.Color = Color 3. 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 |
08 | end |
09 |
10 | local function OnPlayerAdded(player) |
11 | if GamePassService:PlayerHasPass(player, GamePassIdObject.Value) then |
12 | player.CharacterAdded:connect(OnCharacterAdded) |
13 | end |
14 | end |
15 |
16 | Game:GetService( "Players" ).PlayerAdded:connect(OnPlayerAdded) |
01 | id = 000000 -- Put the id of the GamePass Here |
02 |
03 | game.Players.PlayerAdded:connect( function (plr) |
04 | if game:GetService( 'GamePassService' ):PlayerHasPass(plr, id) then |
05 | plr.CharacterAdded:connect( function (char) |
06 | c = plr.Character:GetChildren() |
07 | for i = 1 ,#c do |
08 | if c [ i ] :IsA( "BasePart" ) then |
09 | for i = 1 , 5 do |
10 | s = Instance.new( "Smoke" , plr.Character.Torso) |
11 | end |
12 | end |
13 | end |
14 | end ) |
15 | end |
16 | end ) |
You just need to put the smoke instance into the player. This will put 5 smoke instances into each Part of the Character.
Hope I Helped
+1