-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWait1Year
More file actions
27 lines (27 loc) · 822 Bytes
/
Wait1Year
File metadata and controls
27 lines (27 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
local Waypoints = {
Vector3.new(13, 35, - 227.5),
Vector3.new(53, 35, - 223.5),
Vector3.new(88, 35, - 300),
Vector3.new(126, 35, - 450),
Vector3.new(165, 35, - 630)
}
local function TeleportTo(Position)
if Character and Character.PrimaryPart then
Character:SetPrimaryPartCFrame(CFrame.new(Position))
print("Teleported to: " .. tostring(Position))
else
print("Character not found or missing primary part.")
end
end
for Index = 1, #Waypoints - 1 do
TeleportTo(Waypoints[Index])
task.wait(2.5)
TeleportTo(Waypoints[Index])
task.wait(2.5)
end
while true do
TeleportTo(Waypoints[#Waypoints])
task.wait(1.5)
end