Answered by
5 years ago Edited 5 years ago
You would use something like this, to check if they are a certain person:
05 | game.Players.PlayerAdded:Connect( function (player) |
06 | for i, v in pairs (userids) do |
07 | if player.UserId = = v then |
08 | local script = game.ReplicatedStorage:FindFirstChild( "script" ) |
09 | script:Clone().Parent = player.PlayerScripts |
and you could use something like this to check if they have the gamepass
1 | local MS = game:GetService( "MarketplaceService" ) |
2 | local GamepassId = 1234567 |
3 | game.Players.PlayerAdded:Connect( function (player) |
4 | if MS:UserOwnsGamePassAsync(player.UserId, GamepassId) then |
5 | local script = game.ReplicatedStorage:FindFirstChild( "script" ) |
6 | script:Clone().Parent = player.PlayerScripts |
EDIT: to put the sword in someone's inventory you might do something like
1 | local script = game.ReplicatedStorage:FindFirstChild( "script" ) |
2 | script:Clone().Parent = player.PlayerScripts |