Description
open source for devs update script xd
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
local Tab = Window:MakeTab({
Name = "Tab 1",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
Tab:AddLabel("Is Not Auto")
Tab:AddLabel("Need Pray or Gwa Gwa Spawn In Workspace")
Tab:AddLabel("To The Tp Work")
Tab:AddButton({
Name = "Pray TP",
Callback = function()
local player = game.Players.LocalPlayer local workspace = game:GetService("Workspace")
for _,v in pairs(workspace:GetChildren()) do if v.Name == "Pray" then player.Character.HumanoidRootPart.CFrame = v.CFrame end end
end
})
Tab:AddButton({
Name = "GwaGwa TP",
Callback = function()
local player = game.Players.LocalPlayer local workspace = game:GetService("Workspace")
for _,v in pairs(workspace:GetChildren()) do if v.Name == "GwaGwa" then player.Character.HumanoidRootPart.CFrame = v.CFrame end end
end
})
OrionLib:Init()