No error at all. I want the script to give the tool to all players.
while true do wait(3) local players = game.Players:GetChildren() if #players >= 1 then local Gun = game.Lighting.Springfield:Clone() Gun.Parent = players.Backpack end end
You could simply just get the players with a
for _,v in pairs(game.Players:GetPlayers()) do
statement like so...
for _,v in pairs(game.Players:GetPlayers()) do local Tool = game.Lighting.Springfield Tool:Clone().Parent = v.Backpack end