Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
- local Window = OrionLib:MakeWindow({
- Name = "Admin Panel",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "OrionConfig"
- })
- local Tab = Window:MakeTab({
- Name = "CMDS",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddButton({
- Name = "Fly",
- Callback = function()
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
- local bodyVelocity = Instance.new("BodyVelocity")
- bodyVelocity.Velocity = Vector3.new(0, 50, 0)
- bodyVelocity.MaxForce = Vector3.new(0, math.huge, 0)
- bodyVelocity.Parent = humanoidRootPart
- local bodyGyro = Instance.new("BodyGyro")
- bodyGyro.CFrame = humanoidRootPart.CFrame
- bodyGyro.MaxTorque = Vector3.new(0, 0, 0)
- bodyGyro.Parent = humanoidRootPart
- print("Fly command activated!")
- end
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment