-- Services local Players = game:GetService("Players") local plr = Players.LocalPlayer local TweenService = game:GetService("TweenService") -- GUI Setup local ScreenGui = Instance.new("ScreenGui", game.CoreGui) ScreenGui.Name = "ScriptHub_GUI" local Main = Instance.new("Frame", ScreenGui) Main.Size = UDim2.new(0, 400, 0, 300) Main.Position = UDim2.new(0.5, -200, 0.5, -150) Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Main.BorderSizePixel = 0 Main.Active = true Main.Draggable = true local Title = Instance.new("TextLabel", Main) Title.Size = UDim2.new(1, 0, 0, 50) Title.BackgroundTransparency = 1 Title.Text = "🌈 synt.t Script Hub" Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.TextColor3 = Color3.fromRGB(255, 0, 0) -- Rainbow Title Animation task.spawn(function() while true do for i = 0, 1, 0.01 do Title.TextColor3 = Color3.fromHSV(i, 1, 1) task.wait(0.03) end end end) -- Function to create script buttons local function createScriptButton(name, url, y) local btn = Instance.new("TextButton", Main) btn.Size = UDim2.new(0, 360, 0, 40) btn.Position = UDim2.new(0, 20, 0, y) btn.Text = name btn.TextScaled = true btn.Font = Enum.Font.Gotham btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(function() loadstring(game:HttpGet(url))() end) end -- Buttons createScriptButton("🛠 Admin", "https://raw.githubusercontent.com/tztzus/scripts/refs/heads/main/admin.txt", 60) createScriptButton("📡 Fakelag", "https://raw.githubusercontent.com/tztzus/scripts/refs/heads/main/fakelag.txt", 110) createScriptButton("🚀 Fling", "https://raw.githubusercontent.com/tztzus/scripts/refs/heads/main/fling.txt", 160) -- Destroy GUI Button local destroyBtn = Instance.new("TextButton", Main) destroyBtn.Size = UDim2.new(0, 360, 0, 40) destroyBtn.Position = UDim2.new(0, 20, 0, 220) destroyBtn.Text = "❌ Destroy GUI" destroyBtn.TextScaled = true destroyBtn.Font = Enum.Font.GothamBold destroyBtn.BackgroundColor3 = Color3.fromRGB(80, 0, 0) destroyBtn.TextColor3 = Color3.new(1, 1, 1) destroyBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end)