#Is anyone aware of why this is happening?

1 messages · Page 1 of 1 (latest)

frank trout
#

It seems like wehn a player is joining the player gets new Backpack after 2 seconds but why?

#
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)