Premium Tool
Script
Script
Create a folder in ServerStorage called PremiumTools
Create a folder in ServerStorage called PremiumTools
Put tool you want to give in PremiumTools Folder
Put tool you want to give in PremiumTools Folder
Update this line with tool name
Update this line with tool name
local tool = ServerStorage.PremiumTools:WaitForChild('Tool')
local ServerStorage = game:GetService('ServerStorage')
local function onPlayerJoin(player)
local tool = ServerStorage.PremiumTools:WaitForChild('Tool')
if player.MembershipType == Enum.MembershipType.Premium then
local giveTool = tool:Clone()
if giveTool then
giveTool.Parent = player:WaitForChild('StarterGear')
end
end
end
game.Players.PlayerAdded:Connect(onPlayerJoin)