Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Notification
- local NotificationHolder = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Module.Lua"))()
- local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Client.Lua"))()
- -- Write Golden
- makefolder("solar.lol")
- if _G.is_aquraandroid_loaded then
- Notification:Notify(
- {Title = "solar.lol / Hey!", Description = "The script is already running, what you tryna do?"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- Notification:Notify(
- {Title = "solar.lol / Hey!", Description = "The script is already running, what you tryna do?"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- Notification:Notify(
- {Title = "solar.lol / Hey!", Description = "The script is already running, what you tryna do?"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- Notification:Notify(
- {Title = "solar.lol / Hey!", Description = "The script is already running, what you tryna do?"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- Notification:Notify(
- {Title = "solar.lol / Hey!", Description = "The script is already running, what you tryna do?"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- return
- end
- _G.is_aquraandroid_loaded = true
- -- real notif
- local G2L = {};
- Notification:Notify(
- {Title = "solar.lol / Bootstrapper", Description = "Loading solar.lol. Please wait!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 5, Type = "default"}
- )
- wait(5)
- Notification:Notify(
- {Title = "solar.lol / Credits", Description = "Made by the Zen Team / Mannuhd Scripts"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 3, Type = "default"}
- )
- wait(3)
- Notification:Notify(
- {Title = "solar.lol / Welcome!", Description = "Successfuly loaded solar.lol!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- wait(2)
- -- Library
- local H = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mannuhd/scripthub/refs/heads/main/ui/KavoUI%20(1).txt"))()
- local Window = Library.CreateLib("solar.lol (Scripthub V2) | "..H.Name.." | "..identifyexecutor(), "BloodTheme")
- -- Toggle
- local ScreenGui = Instance.new("ScreenGui")
- local Toggle = Instance.new("TextButton")
- local Corner = Instance.new("UICorner")
- ScreenGui.Name = "ScreenGui"
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ResetOnSpawn = false
- Toggle.Name = "Toggle"
- Toggle.Parent = ScreenGui
- Toggle.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
- Toggle.Size = UDim2.new(0, 90, 0, 47)
- Toggle.Font = Enum.Font.SourceSans
- Toggle.Text = "Toggle"
- Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
- Toggle.TextSize = 21.000
- Toggle.Draggable = true
- Toggle.MouseButton1Click:connect(function()
- Library:ToggleUI()
- end)
- Corner.Name = "Corner"
- Corner.Parent = Toggle
- -- Tabs
- local Credits = Window:NewTab("Information")
- local Tab1 = Window:NewTab("Main")
- local Tab3 = Window:NewTab("Admin")
- local Tab2 = Window:NewTab("Player")
- -- Info
- local Creds = Credits:NewSection("Credits️")
- Creds:NewLabel("Created by Mannuhd Scripts")
- Creds:NewLabel("Linktree: https://linktr.ee/mannuhd")
- Creds:NewLabel("Youtube: @robloxscripter-1")
- local Updates = Credits:NewSection("What's new about v2")
- Updates:NewLabel("[+] New UI Lib")
- Updates:NewLabel("[+] Updated scripts")
- Updates:NewLabel("[+] Added more tabs")
- -- Main
- local Main = Tab1:NewSection("Main")
- Main:NewButton("Antivoid", "Makes the player return to the spawn after dying from the void.", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Executed successfuly!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/AntiFall/main/Script"))()
- end)
- Main:NewButton("Small Hitboxes", "Increases hitrange.", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Activated successfuly!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/AntiFall/main/Script"))()
- end)
- Main:NewButton("Big Hitboxes", "Increases hitrange.", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Activated successfuly!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/AntiFall/main/Script"))()
- end)
- -- Player
- local Player = Tab2:NewSection("Local Player")
- Player:NewTextBox("Change Walkspeed", "Changes the player's walkspeed", function(txt)
- Notification:Notify(
- {Title = "solar.lol", Description = "Changed walkspeed!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = txt
- end)
- Player:NewTextBox("Change Jumppower", "Changes the player's jumppower", function(txt)
- Notification:Notify(
- {Title = "solar.lol", Description = "Changed jumppower!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = txt
- end)
- Player:NewButton("Reset Walkspeed", "Resets the player's walksped", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Resetted Walkspeed!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end)
- Player:NewButton("Reset Jumppower", "Resets the player's jumppower", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Resetted jumppower!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
- end)
- -- Admin
- local Admin = Tab3:NewSection("Admin Scripts")
- Admin:NewButton("Infinite Yield", "The good and old, infinite yield.", function()
- Notification:Notify(
- {Title = "solar.lol", Description = "Resetted jumppower!"},
- {OutlineColor = Color3.fromRGB(255, 0, 0),Time = 2, Type = "default"}
- )
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement