-- UNIVERSAL HP HUB (STABLE VERSION) -- No splash, no blur (HP friendly) local Players = game:GetService("Players") local LP = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Name = "UniversalHPHub" gui.ResetOnSpawn = false gui.Parent = LP:WaitForChild("PlayerGui") -- Frame local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 260, 0, 180) frame.Position = UDim2.new(0.5, -130, 0.5, -90) frame.BackgroundColor3 = Color3.fromRGB(30,30,30) frame.Active = true frame.Draggable = true -- Title local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1,0,0,40) title.BackgroundTransparency = 1 title.Text = "Universal HP Hub" title.TextColor3 = Color3.fromRGB(255,255,255) title.TextScaled = true -- Fly Button local flyBtn = Instance.new("TextButton", frame) flyBtn.Size = UDim2.new(0,200,0,40) flyBtn.Position = UDim2.new(0.5,-100,0,60) flyBtn.Text = "Fly V3" flyBtn.BackgroundColor3 = Color3.fromRGB(60,60,60) flyBtn.TextColor3 = Color3.fromRGB(255,255,255) flyBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet( "https://rawscripts.net/raw/Universal-Script-Fly-v3-13879" ))() end) -- Close Button local closeBtn = Instance.new("TextButton", frame) closeBtn.Size = UDim2.new(0,200,0,35) closeBtn.Position = UDim2.new(0.5,-100,0,115) closeBtn.Text = "Close UI" closeBtn.BackgroundColor3 = Color3.fromRGB(120,40,40) closeBtn.TextColor3 = Color3.fromRGB(255,255,255) closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) -- Notif pcall(function() game.StarterGui:SetCore("SendNotification",{ Title="Universal HP Hub", Text="UI Loaded (Stable Mode)", Duration=3 }) end)