How to make an ''Owner Only Tool'' in Roblox Studio!

How to make an ''Owner Only Tool'' in Roblox Studio!

In this video, I taught you how to make your very own owner-only tool! Script: local MarketPlaceService = game:GetService("MarketplaceService") local GamepassID = 28566179 -- The Gamepass ID game.Players.PlayerAdded:Connect(function(player) if MarketPlaceService:UserOwnsGamePassAsync(player.UserId, GamepassID) then game.ServerStorage["BanHammer"]:Clone().Parent = player:WaitForChild("Backpack") game.ServerStorage["BanHammer"]:Clone().Parent = player:WaitForChild("StarterGear") end end) ------------------------------------------------------------------------------------------------------------------------------- My socials Facebook:   / glitchybonzy   Twitter:   / bonglitchy   Twitch:   / glitcybonzy   Tiktok:   / glitchy.bonzy   Discord:   / discord   Instagram:   / glitchybonzy   Play Roblox now: https://www.roblox.com #Roblox #Tutorial