--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/jensonhirst/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Scrap-HUB", HidePremium = false, SaveConfig = true, ConfigFolder = "ScrapHub"}) local Lighting = game:GetService("Lighting") local Ambient2 = Lighting.Ambient local OutDoor2 = Lighting.OutdoorAmbient local Top2 = Lighting.ColorShift_Top local bottom2 = Lighting.ColorShift_Bottom local Ambient local OutDoor local Top local bottom local Script local Tab = Window:MakeTab({ Name = "Scripts", Icon = "rbxassetid://6231961894", PremiumOnly = false }) local Tab2 = Window:MakeTab({ Name = "Settings", Icon = "rbxassetid://6720824672", PremiumOnly = false }) local Tab3 = Window:MakeTab({ Name = "Custom Script", Icon = "rbxassetid://6231311658", PremiumOnly = false }) Tab:AddLabel("Executor : " .. identifyexecutor()) Tab:AddButton({ Name = "RegretEvator Script (Discontinued)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Roblox55Coder/Exploit-Roblox-Codes/refs/heads/main/what%20the%20fuck"))() end }) --[[ Name = - The name of the button. Callback = - The function of the button. ]] Tab:AddButton({ Name = "KJ Universal Remastered (aka JK Universal V2)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-JK-Universal-V2-or-KJ-UNIVERSAL-REMSATERD-25660"))() end }) Tab:AddButton({ Name = "Jerk Script", Callback = function() loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))("Spider Script") end }) Tab:AddButton({ Name = "Diddy Script idk", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/38Jra00x"))() end }) Tab:AddButton({ Name = "Infinite Yield ", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end }) Tab2:AddButton({ Name = "Remove OrionGui", Callback = function() OrionLib:Destroy() end }) Tab2:AddDropdown({ Name = "Lighting Mode", Default = "ShadowMap", Options = {"Compatibility", "Future", "ShadowMap", "Voxel"}, Callback = function(Value) Lighting.Technology = Enum.Technology[Value] end }) Tab2:AddColorpicker({ Name = "Ambient", Default = Lighting.Ambient, Callback = function(Value) Ambient = Value end }) Tab2:AddColorpicker({ Name = "OutdoorAmbient", Default = Lighting.OutdoorAmbient, Callback = function(Value) OutDoor = Value end }) Tab2:AddColorpicker({ Name = "Shift Bottom", Default = Lighting.ColorShift_Bottom, Callback = function(Value) bottom = Value end }) Tab2:AddColorpicker({ Name = "Shift Top", Default = Lighting.ColorShift_Top, Callback = function(Value) Top = Value end }) Tab2:AddButton({ Name = "Change Light", Callback = function() Lighting.Ambient = Ambient Lighting.OutdoorAmbient = OutDoor Lighting.ColorShift_Bottom = bottom Lighting.ColorShift_Top = Top end }) Tab2:AddButton({ Name = "Change Light To Normal", Callback = function() Lighting.Ambient = Ambient2 Lighting.OutdoorAmbient = OutDoor2 Lighting.ColorShift_Bottom = bottom2 Lighting.ColorShift_Top = Top2 end }) Tab3:AddLabel("im not working on this shit") OrionLib:Init()