Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Scripted by coolcapidog
- Channel ->> https://www.youtube.com/c/coolcapidog
- Don't change anything except you know how to script.
- ]]
- local Players = game:GetService("Players")
- local MarketPlaceService = game:GetService("MarketplaceService")
- local GamepassID = 0
- Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- if script:FindFirstChildOfClass("Tool") and GamepassID ~= 0 then
- if MarketPlaceService:UserOwnsGamePassAsync(player.UserId, GamepassID) then
- script:FindFirstChildOfClass("Tool"):Clone().Parent = player.Backpack
- end
- end
- end)
- end)
Advertisement
Advertisement