RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"write me a roblox script that gives certain players a tool on joining"
-- server script local tool = game.ServerStorage.Tool -- change 'Tool' to the name of your tool in ServerStorage local players = {"Player1", "Player2", "Player3"} -- add the names of the players you want to give the tool to game.Players.PlayerAdded:Connect(function(player) if table.find(players, player.Name) then local newTool = tool:Clone() newTool.Parent = player.Backpack end end)