-- Gutx Scripts | Universal 120 FPS | Com Logo Oficial if getgenv().GutxScripts then getgenv().GutxScripts:Destroy() end pcall(function() if setfpscap then setfpscap(120) end if set_fps_cap then set_fps_cap(120) end end) local Gui = Instance.new("ScreenGui") Gui.Name = "Gutx_Scripts" Gui.Parent = game.CoreGui Gui.ResetOnSpawn = false getgenv().GutxScripts = Gui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 220, 0, 155) Frame.Position = UDim2.new(0.5, -110, 0.5, -75) Frame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Frame.BackgroundTransparency = 0.1 Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = Gui local Corner = Instance.new("UICorner", Frame) Corner.CornerRadius = UDim.new(0, 12) -- LOGO GUTX local Logo = Instance.new("ImageLabel") Logo.Size = UDim2.new(0, 80, 0, 80) Logo.Position = UDim2.new(0.5, -40, 0, 10) Logo.BackgroundTransparency = 1 Logo.Image = "rbxassetid://133469487152124" Logo.Parent = Frame local Title = Instance.new("TextLabel", Frame) Title.Size = UDim2.new(1, 0, 0, 20) Title.Position = UDim2.new(0, 0, 0, 95) Title.BackgroundTransparency = 1 Title.Text = "⚡ GUTX SCRIPTS" Title.TextColor3 = Color3.fromRGB(255, 50, 50) Title.TextScaled = true Title.Font = Enum.Font.GothamBlack local FPSText = Instance.new("TextLabel", Frame) FPSText.Size = UDim2.new(1, 0, 0, 20) FPSText.Position = UDim2.new(0, 0, 0, 115) FPSText.BackgroundTransparency = 1 FPSText.Text = "FPS: Carregando..." FPSText.TextColor3 = Color3.fromRGB(255, 255, 255) FPSText.TextScaled = true FPSText.Font = Enum.Font.GothamBold local PingText = Instance.new("TextLabel", Frame) PingText.Size = UDim2.new(1, 0, 0, 20) PingText.Position = UDim2.new(0, 0, 0, 132) PingText.BackgroundTransparency = 1 PingText.Text = "Ping: --" PingText.TextColor3 = Color3.fromRGB(200, 200, 200) PingText.TextScaled = true PingText.Font = Enum.Font.Gotham -- FPS + Ping local RunService = game:GetService("RunService") local last = tick() local count = 0 RunService.RenderStepped:Connect(function() count += 1 if tick() - last >= 0.5 then local fps = math.floor(count / (tick() - last)) FPSText.Text = "FPS: " .. fps .. " / 120" pcall(function() local ping = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString() PingText.Text = "Ping: " .. ping end) last = tick() count = 0 end end) print("Gutx Scripts carregado com sucesso!")