-- Academic Theme v1 for Delta -- Available on IvanZaSilly's Scriptblox -- Licensed with MIT License -- ~ IvanZaSilly -- Founder -- You can contribute to this script via requesting a pull request -- by commenting a diff of changes or an edited script you desire! <3 assert(Delta and identifyexecutor and identifyexecutor():match("Delta"),"script must be ran on Delta") local gui for _,v in gethui():GetChildren() do if v:FindFirstChild"UILibrary" and v:FindFirstChild"MainScript" and v:FindFirstChild"IsTween" then gui = v break end end assert(gui,"no Delta GUI found") local function rice(v) if v:IsA("UICorner") then v:Destroy() return end if v:IsA("GuiObject") then v.BackgroundColor3 = Color3.fromRGB(228, 204, 190) v.BorderColor3 = Color3.fromRGB(27, 42, 53) v.BorderSizePixel = 2 end if v:IsA("UIStroke") then v.Color = Color3.fromRGB(27, 42, 53) end if v:IsA("ImageLabel") then v.Image = "" end if v:IsA("TextLabel") or v:IsA("TextBox") or v:IsA("TextButton") then v.TextColor3 = Color3.fromRGB(27, 42, 53) v.Font = (v.Parent == gui.Executor.Executor.Overlay.Code and "Code" or "PatrickHand") end end game:GetService("RunService").PreRender:Connect(function() for _,v in gui:GetDescendants() do rice(v) end end) do local h = gui.Console.RConsole.Console.ScrollingFrame.Header local o = gui.Console.ConsoleElements.Output for _,v in { "Academic Theme v1 for Delta", "Available on IvanZaSilly's Scriptblox", "Licensed with MIT License", "~ IvanZaSilly -- Founder", "", "You can contribute to this script via requesting a pull request", "by commenting a diff of changes or an edited script you desire! <3" } do local c = o:Clone() c.Content.Text = v c.Visible = true c.Parent = h end end local bgui for _,v in gethui():GetChildren() do if v:FindFirstChildOfClass("ImageButton") and v:FindFirstChildOfClass("ImageButton").Image == "rbxasset://0367f0e50284745bb2f78f838b627103/logo.png" then bgui = v break end end if not bgui then warn("no Delta bubble GUI found, skipping") return end bgui:FindFirstChildOfClass("ImageButton").BackgroundColor3 = Color3.fromRGB(228, 204, 190) bgui:FindFirstChildOfClass("ImageButton"):FindFirstChildOfClass("UIStroke").Color = Color3.fromRGB(27, 42, 53) --[[ MIT License Copyright (c) 2026 IvanZaSilly Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ]]