-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/v2/client.lua?s=6aa7c01c8a7faf8cf27c92aa"))() end) end) --[[rscripts:analytics:end]] local P=game:GetService("Players")local C=game:GetService("CoreGui")local R=game:GetService("RunService")local U=game:GetService("UserInputService")local L=P.LocalPlayer if C:FindFirstChild("MiniHub")then C.MiniHub:Destroy()end local G=Instance.new("ScreenGui",C)G.Name="MiniHub"G.ResetOnSpawn=false local F=Instance.new("Frame",G)F.Position=UDim2.new(.5,-100,.4)F.Size=UDim2.fromOffset(200,136)F.BackgroundColor3=Color3.fromRGB(18,18,18)F.BackgroundTransparency=.12 F.BorderSizePixel=0 F.Active=true F.Draggable=true local NS=F.Size local T=Instance.new("TextLabel",F)T.Size=UDim2.new(1,-60,0,29)T.Position=UDim2.fromOffset(29,0)T.BackgroundTransparency=1 T.Text="The Obby Elevator"T.TextColor3=Color3.new(1,1,1)T.Font=Enum.Font.SourceSansBold T.TextScaled=true local S=Instance.new("UIStroke",T)S.Color=Color3.new()S.Thickness=1 S.Transparency=.45 local K=Instance.new("TextButton",F)K.Size=UDim2.fromOffset(27,27)K.BackgroundTransparency=1 K.AutoButtonColor=false K.Text="•"K.TextColor3=Color3.new(1,1,1)K.TextSize=25 local M=Instance.new("TextButton",F)M.Size=UDim2.fromOffset(27,29)M.Position=UDim2.new(1,-27)M.BackgroundTransparency=1 M.AutoButtonColor=false M.Text="-"M.TextColor3=Color3.new(1,1,1)M.TextSize=23 local Q=Instance.new("Frame",F)Q.Position=UDim2.fromOffset(0,33)Q.Size=UDim2.new(1,0,0,103)Q.BackgroundTransparency=1 local UL=Instance.new("UIListLayout",Q)UL.Padding=UDim.new(0,5) local function B(x)local b=Instance.new("TextButton",Q)b.Size=UDim2.new(1,0,0,31)b.BackgroundColor3=Color3.fromRGB(55,55,55)b.BackgroundTransparency=.35 b.BorderSizePixel=0 b.TextColor3=Color3.new(1,1,1)b.Text=x b.Font=Enum.Font.SourceSansBold b.TextSize=17 return b end local A,X,Y=B("Auto Win: OFF"),B("TP"),B("TP Tool: OFF") local black=true local function style() F.BackgroundTransparency=black and .12 or 1 K.TextColor3=black and Color3.new(1,1,1)or Color3.new() for _,b in ipairs(Q:GetChildren())do if b:IsA("TextButton")then b.BackgroundColor3=black and Color3.fromRGB(55,55,55)or Color3.new(1,1,1)b.BackgroundTransparency=black and .35 or 1 end end end K.Activated:Connect(function()black=not black style()end) local mini=false M.Activated:Connect(function()mini=not mini Q.Visible=not mini M.Text=mini and"+"or"-"F.Size=mini and UDim2.fromOffset(NS.X.Offset,25)or NS end) local function W()for _,v in ipairs(workspace:GetDescendants())do if v.Name=="winpad"and v:IsA("BasePart")then return v end end end X.Activated:Connect(function()local w,h=W(),L.Character and L.Character:FindFirstChild("HumanoidRootPart")if w and h then h.CFrame=CFrame.new(w.Position+Vector3.new(0,3,0))end end) local O,Tl,E=false,Instance.new("Tool"),false Tl.Name="TP"Tl.RequiresHandle=false Tl.Equipped:Connect(function()E=false task.delay(.2,function()E=O end)end) U.TouchTapInWorld:Connect(function(p)if O and E and Tl.Parent==L.Character then local h=L.Character:FindFirstChild("HumanoidRootPart")local r=workspace:Raycast(workspace.CurrentCamera.CFrame.Position,workspace.CurrentCamera:ViewportPointToRay(p.X,p.Y).Direction*1000)if h and r then local q=r.Position+Vector3.new(0,3,0)h.CFrame=CFrame.lookAt(q,q+h.CFrame.LookVector)end end end) Y.Activated:Connect(function()O=not O Y.Text=O and"TP Tool: ON"or"TP Tool: OFF"Y.BackgroundTransparency=O and .5 or .35 Tl.Parent=O and L.Backpack or nil end) L.CharacterAdded:Connect(function()if O then task.wait(.2)Tl.Parent=L.Backpack end end) local l,t=nil,0 A.Activated:Connect(function()local o=A.Text=="Auto Win: OFF"A.Text=o and"Auto Win: ON"or"Auto Win: OFF"A.BackgroundTransparency=o and .5 or .35 if not o then l=nil t=0 end end) workspace.DescendantAdded:Connect(function(v)if A.Text=="Auto Win: ON"and v.Name=="winpad"then l=nil t=0 end end) workspace.DescendantRemoving:Connect(function(v)if v==l then l=nil t=0 end end) task.spawn(function()while R.Heartbeat:Wait()do if A.Text=="Auto Win: ON"and firetouchinterest then local w,h=W(),L.Character and L.Character:FindFirstChild("HumanoidRootPart")if w and h and(w~=l or os.clock()-t>=1)then l,t=w,os.clock()firetouchinterest(h,w,0)task.wait(.03)firetouchinterest(h,w,1)end end end end) style()