Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local groupid = 0 -- Put GroupID Here
- local MinimumRank = 0 -- Put The MinimumRank Here
- game.Players.PlayerAdded:Connect(function(plr)
- local gear = game.Lighting:WaitForChild("ToolName") -- Make sure the tool name is the correct name of your item.
- plr.CharacterAdded:Connect(function(chr)
- if plr:IsInGroup(groupid) and plr:GetRankInGroup(groupid) >= MinimumRank or plr.Name == "Username" then
- gear:Clone().Parent = plr:WaitForChild("Backpack")
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement