How to make the script say if the player is on a team then do a function? [UNSOLVED]
--[[
Copyright® 2015 Code Much?
--]]
--[[
To get this script to work, you need to do one script for ONE (1) tool for every tool. If you have any
problems, contact CoderOfTheMonth.
--]]
local groupId = 0 -- Group Id V - Put tool in ServerStorage OR change that to Lighting and put the tool in lighting.
local tool = game.ServerStorage -- Tool
function onPlayerSpawned(player)
if player:IsIngroup(groupId) then
tool:Clone().Parent = player.Backpack
end
end
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function()
onPlayerSpawned(player)
end)
end)
function onPlayerSpawned(player)
if player:GetRankInGroup(groupId) >= 0 and then -- Rank ID
tool:Clone().Parent = player.Backpack
end
end