Advertisement
4zx16

Tool Handler (Gamepass)

Nov 13th, 2021 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || TOOL GAMEPASS || ONLY TOUCH ID AND TOOL!
  3. ]]
  4. local MPS = game:GetService("MarketplaceService")
  5. local tool = game:GetService("ServerStorage").Name
  6. local id = 0
  7.  
  8. game.Players.PlayerAdded:Connect(function(plr)
  9.     plr.CharacterAdded:Connect(function()
  10.        
  11.         if MPS:UserOwnsGamePassAsync(plr.UserId, id) then
  12.             wait(0.9)
  13.             tool:Clone().Parent = plr:WaitForChild("Backpack")
  14.         end
  15.     end)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement