Find any script for Roblox

Enter the name of the game or script.

Script – Skateboard obby

Thank you for using our website
Your script:

NO KEY

local Players = game:GetService("Players")
local player = Players.LocalPlayer
local character = workspace:WaitForChild("Characters"):WaitForChild(player.Name)
local hrp = character:WaitForChild("HumanoidRootPart")
local checkpointFolder = workspace:WaitForChild("Map"):WaitForChild("Checkpoints")
for i = 1, 100 do
	local model = checkpointFolder:FindFirstChild(tostring(i))
	if model and model:IsA("Model") and model.PrimaryPart then
		hrp.CFrame = model.PrimaryPart.CFrame + Vector3.new(0, 3, 0)
		wait(0)
	else
	end
end