Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Orion Lib Example.lua #7

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 62 additions & 62 deletions Orion Lib/Orion Lib Example.lua
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
OrionLib:MakeNotification({
Name = "Orion Example",
Content = "Orion Example",
Image = "rbxassetid://4483345998",
Time = 5
})
local Window = OrionLib:MakeWindow({Name = "Orion Example", HidePremium = false, SaveConfig = true, ConfigFolder = "Orion"})
--Player Tab--
local PlayerTab = Window:MakeTab({
Name = "Player",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local PlayerSection = PlayerTab:AddSection({
Name = "Player"
})
PlayerSection:AddSlider({
Name = "Walkspeed",
Min = 16,
Max = 100,
Default = 5,
Color = Color3.fromRGB(255,255,255),
Increment = 1,
ValueName = "Walkspeed",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end
})
--Player Tab End--
--Settings Tab--
local SettingsTab = Window:MakeTab({
Name = "Settings",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local SettingsSection = SettingsTab:AddSection({
Name = "Settings"
})
SettingsSection:AddButton({
Name = "Destroy UI",
Callback = function()
OrionLib:Destroy()
end
})
--Settings End--
OrionLib:Init() --UI Lib End
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()

OrionLib:MakeNotification({
Name = "Script",
Content = "Script Açıldı İyi Oyunlar",
Image = "rbxassetid://4483345998",
Time = 5
})


local Window = OrionLib:MakeWindow({Name = "Orion Example", HidePremium = false, SaveConfig = true, ConfigFolder = "Orion"})

--Player Tab--

local PlayerTab = Window:MakeTab({
Name = "Reach",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})

local PlayerSection = PlayerTab:AddSection({
Name = "Reach"
})
ReachSection:AddButton({
Name = "200 STUD"
Callback = function()
while wait(0.3) do
local args = {
[1] = workspace.TPSSystem.TPS,
[2] = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,
[3] = 30,
[4] = Vector3.new(4000000, 300, 4000000)
}

workspace.FE.Actions.KickG1:FireServer(unpack(args))
end
})

--Player Tab End--

--Settings Tab--

local SettingsTab = Window:MakeTab({
Name = "Settings",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})

local SettingsSection = SettingsTab:AddSection({
Name = "Settings"
})

SettingsSection:AddButton({
Name = "Destroy UI",
Callback = function()
OrionLib:Destroy()
end
})

--Settings End--

OrionLib:Init() --UI Lib End