Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "NothingHub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --[[
- Name = <string> - The name of the UI.
- HidePremium = <bool> - Whether or not the user details shows Premium status or not.
- SaveConfig = <bool> - Toggles the config saving in the UI.
- ConfigFolder = <string> - The name of the folder where the configs are saved.
- IntroEnabled = <bool> - Whether or not to show the intro animation.
- IntroText = <string> - Text to show in the intro animation.
- IntroIcon = <string> - URL to the image you want to use in the intro animation.
- Icon = <string> - URL to the image you want displayed on the window.
- CloseCallback = <function> - Function to execute when the window is closed.
- ]]
- local Tab = Window:MakeTab({
- Name = "NothigHub",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- local Section = Tab:AddSection({
- Name = "PlayerLocal"
- })
- --[[
- Name = <string> - The name of the section.
- ]]
- OrionLib:MakeNotification({
- Name = "HelloWelcome",
- Content = "Notification content... PlsSub??",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- --[[
- Title = <string> - The title of the notification.
- Content = <string> - The content of the notification.
- Image = <string> - The icon of the notification.
- Time = <number> - The duration of the notfication.
- ]]
- Tab:AddButton({
- Name = "SpeedNotWorking!",
- Callback = function()
- -- LocalScript
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- humanoid.WalkSpeed = 50
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Range!",
- Callback = function()
- local player = game.Players.LocalPlayer
- local ScreenGui = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- ScreenGui.Parent = player:WaitForChild("PlayerGui")
- TextLabel.Parent = ScreenGui
- TextLabel.Size = UDim2.new(0, 400, 0, 100)
- TextLabel.Position = UDim2.new(0, 10, 0, 10)
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.TextStrokeTransparency = 0.5
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.TextSize = 50
- TextLabel.Text = "Made by kaezy"
- local function rainbowTextLabel()
- local colors = {Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 165, 0), Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 255, 0), Color3.fromRGB(0, 0, 255), Color3.fromRGB(75, 0, 130), Color3.fromRGB(238, 130, 238)}
- local index = 1
- while true do
- TextLabel.TextColor3 = colors[index]
- index = (index % #colors) + 1
- wait(0.5)
- end
- end
- coroutine.wrap(rainbowTextLabel)()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Combat-Warriors-ranged-hitbox-expander-10430"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement