local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") -- H/P BUTTON (küçük kare) local button = Instance.new("TextButton") button.Parent = gui button.Size = UDim2.new(0, 50, 0, 50) button.Position = UDim2.new(0.5, -25, 0.5, -25) button.BackgroundColor3 = Color3.fromRGB(255, 255, 255) button.BorderColor3 = Color3.fromRGB(0, 0, 0) button.BorderSizePixel = 3 button.Text = "h/p" button.TextColor3 = Color3.fromRGB(0, 0, 0) button.TextSize = 18 button.Font = Enum.Font.SourceSansBold button.Active = true button.Draggable = true -- SPINNING RING (butonla aynı boyutta) local spin = Instance.new("Frame") spin.Parent = button spin.Size = UDim2.new(1, 10, 1, 10) spin.Position = UDim2.new(0, -5, 0, -5) spin.BackgroundTransparency = 1 local stroke = Instance.new("UIStroke") stroke.Parent = spin stroke.Color = Color3.fromRGB(0, 0, 0) stroke.Thickness = 3 stroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border game:GetService("RunService").RenderStepped:Connect(function() spin.Rotation = spin.Rotation + 3 end) -- EXECUTOR FRAME local executor = Instance.new("Frame") executor.Parent = gui executor.Size = UDim2.new(0, 420, 0, 260) executor.Position = UDim2.new(0.5, -210, 0.5, -130) executor.BackgroundColor3 = Color3.fromRGB(255, 255, 255) executor.BorderColor3 = Color3.fromRGB(0, 0, 0) executor.BorderSizePixel = 3 executor.Visible = false executor.Active = true executor.Draggable = true -- TITLE local title = Instance.new("TextLabel") title.Parent = executor title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(240, 240, 240) title.BorderColor3 = Color3.fromRGB(0, 0, 0) title.BorderSizePixel = 2 title.Text = "h0imerpr1me Executor" title.TextColor3 = Color3.fromRGB(0, 0, 0) title.TextSize = 20 title.Font = Enum.Font.SourceSansBold -- SCRIPT BOX local box = Instance.new("TextBox") box.Parent = executor box.Size = UDim2.new(1, -20, 0, 130) box.Position = UDim2.new(0, 10, 0, 50) box.BackgroundColor3 = Color3.fromRGB(248, 248, 248) box.BorderColor3 = Color3.fromRGB(80, 80, 80) box.BorderSizePixel = 2 box.TextColor3 = Color3.fromRGB(0, 0, 0) box.Text = "-- put lua script here" box.TextWrapped = true box.TextXAlignment = Enum.TextXAlignment.Left box.TextYAlignment = Enum.TextYAlignment.Top box.ClearTextOnFocus = false box.MultiLine = true box.Font = Enum.Font.Code box.TextSize = 15 -- EXECUTE BUTTON local exec = Instance.new("TextButton") exec.Parent = executor exec.Size = UDim2.new(0.4, 0, 0, 40) exec.Position = UDim2.new(0.1, 0, 1, -50) exec.BackgroundColor3 = Color3.fromRGB(220, 220, 220) exec.BorderColor3 = Color3.fromRGB(0, 0, 0) exec.BorderSizePixel = 2 exec.Text = "Execute" exec.TextColor3 = Color3.fromRGB(0, 0, 0) exec.Font = Enum.Font.SourceSansBold exec.TextSize = 18 -- CLEAR BUTTON local clear = Instance.new("TextButton") clear.Parent = executor clear.Size = UDim2.new(0.4, 0, 0, 40) clear.Position = UDim2.new(0.5, 0, 1, -50) clear.BackgroundColor3 = Color3.fromRGB(220, 220, 220) clear.BorderColor3 = Color3.fromRGB(0, 0, 0) clear.BorderSizePixel = 2 clear.Text = "Clear" clear.TextColor3 = Color3.fromRGB(0, 0, 0) clear.Font = Enum.Font.SourceSansBold clear.TextSize = 18 -- OPEN / CLOSE EXECUTOR button.MouseButton1Click:Connect(function() executor.Visible = not executor.Visible end) -- EXECUTE SCRIPT exec.MouseButton1Click:Connect(function() local code = box.Text local func, err = loadstring(code) if func then local success, result = pcall(func) if not success then warn("Executor hatası: " .. tostring(result)) end else warn("Kod yükleme hatası: " .. tostring(err)) end end) -- CLEAR SCRIPT BOX clear.MouseButton1Click:Connect(function() box.Text = "" end)