--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- THH LOADER - REAL GAME VERSION (WORKS 100%) local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Name = "THH_Loader" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 460, 0, 320) frame.Position = UDim2.new(0.5, -230, 0.5, -160) frame.BackgroundColor3 = Color3.fromRGB(50, 30, 80) frame.BorderSizePixel = 0 Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 18) -- Title local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1,0,0,60) title.Position = UDim2.new(0,0,0,10) title.Text = "THH LOADER" title.Font = Enum.Font.GothamBold title.TextSize = 32 title.TextColor3 = Color3.fromRGB(240,230,255) title.BackgroundTransparency = 1 -- Subtitle local sub = Instance.new("TextLabel", frame) sub.Size = UDim2.new(1,0,0,30) sub.Position = UDim2.new(0,0,0,60) sub.Text = "Game Script Hub" sub.Font = Enum.Font.Gotham sub.TextSize = 18 sub.TextColor3 = Color3.fromRGB(190,170,220) sub.BackgroundTransparency = 1 -- Container local container = Instance.new("Frame", frame) container.Size = UDim2.new(1,-40,1,-120) container.Position = UDim2.new(0,20,0,110) container.BackgroundTransparency = 1 -- Fade in frame.BackgroundTransparency = 1 TweenService:Create(frame, TweenInfo.new(0.5), { BackgroundTransparency = 0 }):Play() -- Close function local function closeGui() TweenService:Create(frame, TweenInfo.new(0.4), { BackgroundTransparency = 1 }):Play() task.wait(0.45) gui:Destroy() end -- Button creator local function createButton(text, posY, action) local button = Instance.new("TextButton", container) button.Size = UDim2.new(1,0,0,50) button.Position = UDim2.new(0,0,0,posY) button.Text = text button.Font = Enum.Font.GothamMedium button.TextSize = 22 button.TextColor3 = Color3.new(1,1,1) button.BackgroundColor3 = Color3.fromRGB(90,60,130) button.BorderSizePixel = 0 Instance.new("UICorner", button).CornerRadius = UDim.new(0,14) button.MouseButton1Click:Connect(function() button.Text = "Loading..." task.wait(0.2) action() -- 🔥 YOUR SCRIPT RUNS HERE button.Text = "Loaded ✔" task.wait(0.3) closeGui() end) end -- ================================================= -- 🔥 YOUR 3 MOD BUTTONS (READY) 🔥 -- ================================================= createButton("🕺 All Animation", 0, function() print("All Animation loaded") loadstring(game:HttpGet("https://pastefy.app/5gpbiKyN/raw"))() end) createButton("🍀 BEST SCRIPT BREAK A LUCKY BLOCK", 65, function() print("Lucky Block loaded") loadstring(game:HttpGet("https://raw.githubusercontent.com/FayintXhub/FayintExploit/refs/heads/main/Loader"))() end) createButton("⚡ Speed Draw!", 130, function() print("Speed Draw loaded") loadstring(game:HttpGet('https://pastebin.com/raw/mizeQM4i'))() end) createButton("big mod menu", 195, function() print("big mod menu loaded") loadstring(game:HttpGet("https://pastebin.com/raw/Piw5bqGq"))() end) createButton("Script VerifiedTSUNAMI DUPE BRAINROTS", 260, function() print("Script VerifiedTSUNAMI DUPE BRAINROTS loaded") loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/fda9babd071d6b536a745774b6bc681c.lua"))() end)