#Is anyone aware of why this is happening?
1 messages · Page 1 of 1 (latest)
game.Players.PlayerAdded:Connect(function(plr)
local tf = Instance.new("Folder")
tf.Name = "Tools_Folder"
tf.Parent = plr
local backpack1 = plr:WaitForChild("Backpack")
print("Backpack 1:", backpack1)
task.wait(2)
local backpack2 = plr:FindFirstChild("Backpack")
print("Backpack 2:", backpack2)
print("Same?", backpack1 == backpack2)
end)