-- Roblox services local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local SoundService = game:GetService("SoundService") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") -- 🟢 Fake Diamonds Menu local diamonds = 0 local function applyToLabel(obj) if obj:IsA("TextLabel") or obj:IsA("TextButton") then if string.find(obj.Text, "%d") then obj.Text = tostring(diamonds) end end end for _, obj in ipairs(PlayerGui:GetDescendants()) do applyToLabel(obj) end PlayerGui.DescendantAdded:Connect(applyToLabel) local screenGui = Instance.new("ScreenGui", PlayerGui) screenGui.ResetOnSpawn = false local frame = Instance.new("Frame", screenGui) frame.Size = UDim2.new(0, 220, 0, 150) frame.Position = UDim2.new(0.5, -110, 0.5, -75) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 10) local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 30) title.Text = "💎 Diamonds" title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundColor3 = Color3.fromRGB(60, 60, 60) Instance.new("UIStroke", title).Thickness = 2 local textBox = Instance.new("TextBox", frame) textBox.Size = UDim2.new(0.8, 0, 0, 30) textBox.Position = UDim2.new(0.1, 0, 0, 45) textBox.PlaceholderText = "Enter number..." textBox.Text = "" textBox.Font = Enum.Font.GothamBold textBox.TextSize = 14 textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.BackgroundColor3 = Color3.fromRGB(80, 80, 80) Instance.new("UICorner", textBox).CornerRadius = UDim.new(0, 6) local button = Instance.new("TextButton", frame) button.Size = UDim2.new(0.8, 0, 0, 30) button.Position = UDim2.new(0.1, 0, 0, 85) button.Text = "Apply" button.Font = Enum.Font.GothamBold button.TextSize = 14 button.TextColor3 = Color3.fromRGB(255, 255, 255) button.BackgroundColor3 = Color3.fromRGB(0, 170, 255) Instance.new("UICorner", button).CornerRadius = UDim.new(0, 6) -- Sound effects local clickSound = Instance.new("Sound", SoundService) clickSound.SoundId = "rbxassetid://12221967" clickSound.Volume = 1 local function playClick() clickSound:Play() end -- Apply button button.MouseButton1Click:Connect(function() playClick() local num = tonumber(textBox.Text) if num then diamonds = num for _, obj in ipairs(PlayerGui:GetDescendants()) do applyToLabel(obj) end end end) -- Thông báo khi bật script game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Fake Diamonds Menu", Text = "Menu ready! 💎", Duration = 5 })