local Players = game:GetService("Players") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local startCFrame = hrp.CFrame local boxesFolder = workspace:WaitForChild("HiddenWeaponBoxes") for _, box in pairs(boxesFolder:GetChildren()) do if box:IsA("BasePart") then hrp.CFrame = box.CFrame + Vector3.new(0, 2, 0) task.wait(1) end end hrp.CFrame = startCFrame