local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:FindFirstChild("HumanoidRootPart")
local folder = workspace:FindFirstChild("Folder")
if folder and hrp then
for _, model in pairs(folder:GetChildren()) do
if model:IsA("Model") then
local targetPart = model:FindFirstChildOfClass("MeshPart") or model:FindFirstChildOfClass("Part")
if targetPart then
hrp.CFrame = targetPart.CFrame + Vector3.new(0, 3, 0)
task.wait(1)
end
end
end
end
Created On: 3/20/2025