AdminRBScripts

Admin Panel For Roblox

Dec 29th, 2024
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.12 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
  2.  
  3. local Window = OrionLib:MakeWindow({
  4.     Name = "Admin Panel",
  5.     HidePremium = false,
  6.     SaveConfig = true,
  7.     ConfigFolder = "OrionConfig"
  8. })
  9.  
  10. local Tab = Window:MakeTab({
  11.     Name = "CMDS",
  12.     Icon = "rbxassetid://4483345998",
  13.     PremiumOnly = false
  14. })
  15.  
  16. Tab:AddButton({
  17.     Name = "Fly",
  18.     Callback = function()
  19.         local player = game.Players.LocalPlayer
  20.         local character = player.Character or player.CharacterAdded:Wait()
  21.         local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  22.  
  23.         local bodyVelocity = Instance.new("BodyVelocity")
  24.         bodyVelocity.Velocity = Vector3.new(0, 50, 0)
  25.         bodyVelocity.MaxForce = Vector3.new(0, math.huge, 0)
  26.         bodyVelocity.Parent = humanoidRootPart
  27.  
  28.         local bodyGyro = Instance.new("BodyGyro")
  29.         bodyGyro.CFrame = humanoidRootPart.CFrame
  30.         bodyGyro.MaxTorque = Vector3.new(0, 0, 0)
  31.         bodyGyro.Parent = humanoidRootPart
  32.  
  33.         print("Fly command activated!")
  34.     end
  35. })
  36.  
  37. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment