local LP=game.Players.LocalPlayer local RS=game:GetService("RunService") local SG=Instance.new("ScreenGui",game.CoreGui) local M=Instance.new("Frame",SG) local B1=Instance.new("TextButton",M) local B2=Instance.new("TextButton",M) local I=Instance.new("TextBox",M) local K="DeltaMastermind2026" local U="https://link-center.net" local f=false M.Size=UDim2.new(0,120,0,120) M.Position=UDim2.new(0.1,0,0.1,0) M.BackgroundColor3=Color3.new(0,0,0) M.BackgroundTransparency=0.4 M.Active=true M.Draggable=true I.Size=UDim2.new(1,0,0.3,0) I.PlaceholderText="Key" I.TextScaled=true B1.Size=UDim2.new(1,0,0.3,0) B1.Position=UDim2.new(0,0,0.3,0) B1.Text="GET" B1.MouseButton1Click:Connect(function() setclipboard(U) B1.Text="COPIED" end) B2.Size=UDim2.new(1,0,0.4,0) B2.Position=UDim2.new(0,0,0.6,0) B2.Text="FLY" B2.MouseButton1Click:Connect(function() if I.Text==K then f=not f B2.TextColor3=f and Color3.new(0,1,0) or Color3.new(1,1,1) else LP:Kick() end end) RS.RenderStepped:Connect(function() if f and LP.Character then for _,v in pairs(LP.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide=false end end LP.Character.HumanoidRootPart.Velocity=workspace.CurrentCamera.CFrame.LookVector*500 LP.Character.HumanoidRootPart.RotVelocity=Vector3.new(0,0,0) end end)