local p=game.Players.LocalPlayer local h=p.Character:WaitForChild("HumanoidRootPart") local s,pos=false,h.CFrame local g=Instance.new("ScreenGui",p:WaitForChild("PlayerGui")) local b=Instance.new("TextButton",g) b.Size,b.Position,b.TextScaled,b.BackgroundColor3=UDim2.new(0,80,0,25),UDim2.new(.5,-40,.9,0),true,Color3.new() b.Text,b.TextColor3="OFF",Color3.new(1,0,0) b.Active,b.Draggable=true,true Instance.new("UICorner",b).CornerRadius=UDim.new(0,10) b.MouseButton1Click:Connect(function() s=not s b.Text,b.TextColor3=s and"ON"or"OFF",s and Color3.new(0,1,0)or Color3.new(1,0,0) if s then pos=h.CFrame else h.CFrame=pos end while s do for _,v in next,workspace:GetDescendants()do if not s then break end if v:IsA("ProximityPrompt") and v.Parent and string.find(string.lower(v.Parent.Name),"wooden box") then h.CFrame=v.Parent.CFrame task.wait(.2) fireproximityprompt(v,1) task.wait(v.HoldDuration+.2) end end task.wait(1) end end)