--[=[ h0imer F3X Gui - Küçültülmüş + Sm + Hint + Avatar All Güncellendi ]=] local screenGui = Instance.new("ScreenGui") screenGui.Name = "h0imerGUI" screenGui.ResetOnSpawn = false screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Ana Frame local mainFrame = Instance.new("Frame") mainFrame.Name = "MainFrame" mainFrame.Parent = screenGui mainFrame.BackgroundColor3 = Color3.fromRGB(69, 201, 255) mainFrame.BorderSizePixel = 4 mainFrame.BorderColor3 = Color3.fromRGB(255, 255, 255) mainFrame.Size = UDim2.new(0, 220, 0, 200) mainFrame.Position = UDim2.new(0.35, 0, 0.25, 0) mainFrame.Active = true -- Başlık local title = Instance.new("TextLabel") title.Parent = mainFrame title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) title.BorderSizePixel = 2 title.Size = UDim2.new(1, 0, 0, 30) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "h0imer F3X Gui" title.TextScaled = true title.Font = Enum.Font.ArialBold title.TextColor3 = Color3.fromRGB(0, 0, 0) -- Butonlar local smBtn = Instance.new("TextButton") smBtn.Parent = mainFrame smBtn.Size = UDim2.new(0, 90, 0, 32) smBtn.Position = UDim2.new(0, 10, 0, 40) smBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) smBtn.Text = "Sm" smBtn.TextScaled = true smBtn.Font = Enum.Font.SourceSansBold local hintBtn = Instance.new("TextButton") hintBtn.Parent = mainFrame hintBtn.Size = UDim2.new(0, 90, 0, 32) hintBtn.Position = UDim2.new(0, 110, 0, 40) hintBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) hintBtn.Text = "Hint" hintBtn.TextScaled = true hintBtn.Font = Enum.Font.SourceSansBold -- Avatar All Butonu (eski Skybox butonu) local avatarAllBtn = Instance.new("TextButton") avatarAllBtn.Parent = mainFrame avatarAllBtn.Size = UDim2.new(0, 90, 0, 32) avatarAllBtn.Position = UDim2.new(0, 10, 0, 80) avatarAllBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 100) -- Dikkat çekici renk avatarAllBtn.Text = "Avatar All" avatarAllBtn.TextScaled = true avatarAllBtn.Font = Enum.Font.SourceSansBold avatarAllBtn.TextColor3 = Color3.fromRGB(255, 255, 255) local decalBtn = Instance.new("TextButton") decalBtn.Parent = mainFrame decalBtn.Size = UDim2.new(0, 90, 0, 32) decalBtn.Position = UDim2.new(0, 110, 0, 80) decalBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) decalBtn.Text = "Decal" decalBtn.TextScaled = true local particleBtn = Instance.new("TextButton") particleBtn.Parent = mainFrame particleBtn.Size = UDim2.new(0, 90, 0, 32) particleBtn.Position = UDim2.new(0, 10, 0, 120) particleBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) particleBtn.Text = "Particle" particleBtn.TextScaled = true -- ==================== SÜRÜKLEME ==================== local UIS = game:GetService("UserInputService") local RunService = game:GetService("RunService") local dragging = false local dragInput = nil local dragStart = nil local startPos = nil local function update(input) local delta = input.Position - dragStart mainFrame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X * 0.7, startPos.Y.Scale, startPos.Y.Offset + delta.Y * 0.7 ) end title.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = mainFrame.Position end end) title.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) RunService.Heartbeat:Connect(function() if dragging and dragInput then update(dragInput) end end) print("h0imer F3X Gui yüklendi - Avatar All butonu eklendi") -- ==================== BUTON FONKSİYONLARI ==================== local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommandSilent -- Sm Butonu smBtn.MouseButton1Click:Connect(function() RequestCommand:InvokeServer(";sm TEAM H0İMER HACKED THE GAME") print(";sm komutu çalıştırıldı") end) -- Hint Butonu hintBtn.MouseButton1Click:Connect(function() RequestCommand:InvokeServer(";Hint team h0imer is here!!!!!") print(";Hint komutu çalıştırıldı") end) -- **Avatar All Butonu** avatarAllBtn.MouseButton1Click:Connect(function() RequestCommand:InvokeServer(";char all HeimerPrime") print(";char all HeimerPrime komutu çalıştırıldı - Tüm oyuncular HeimerPrime avatarına çevrildi") end) -- Diğer butonlar decalBtn.MouseButton1Click:Connect(function() print("Decal butonu tıklandı") end) particleBtn.MouseButton1Click:Connect(function() print("Particle butonu tıklandı") end) return screenGui