I checked the parents and everything, no errors but it does not clone still.
I think I should use the player added function and have player inside the parentheseis at the end
Example (player)
Then would I just do player.Character?
Here is my original script that is in Workspace.
local object = script.Tooltip:Clone() for i, v in pairs(game.Players:GetPlayers()) do if v.Character then object:Clone().Parent = v.Character.Torso end end
local object = script.Tooltip game.Players.PlayerAdded:connect(function(player) object:Clone().Parent = game.Workspace:FindFirstChild(player.Name).Torso end)