Kirby custom cursor
Kirby Custom Cursor Pack mit süßem Cursor für Fans des Themas.
Default navigation pointer
Used for clickable elements
Hover over each side to preview both cursor styles in real-time.
Customize your embed code and preview it in real time below.
Live preview
<style type="text/css">
body {
cursor: url(https://cdn.cutecursors.com/images/cursors/5e4fa6ea11bcb.png) 4 4, auto;
}
a, button, .clickable {
cursor: url(https://cdn.cutecursors.com/images/pointers/5e4fa6ea11bd3.png) 4 4, pointer;
}
</style>
<a href="https://cutecursors.com//category/kirby/kirby-cute-cursors" title="Get free Kirby cursors for your website.">
Kirby Cursors
</a>/* components/CuteCursor.jsx */
"use client";
import { useEffect } from "react";
const CURSOR = "https://cdn.cutecursors.com/images/cursors/5e4fa6ea11bcb.png";
const POINTER = "https://cdn.cutecursors.com/images/pointers/5e4fa6ea11bd3.png";
export default function CuteCursor() {
useEffect(() => {
const style = document.createElement("style");
style.innerHTML = `
body { cursor: url(${CURSOR}) 4 4, auto; }
a, button, .clickable { cursor: url(${POINTER}) 4 4, pointer; }
`;
document.head.appendChild(style);
return () => style.remove();
}, []);
return null;
}
/* Usage: render <CuteCursor /> once, e.g. in your root layout or App:
<CuteCursor />
Kirby cursors by https://cutecursors.com//category/kirby/kirby-cute-cursors */-- Kirby custom cursor for Roblox
-- LocalScript (place it in StarterPlayer > StarterPlayerScripts)
--
-- 1) Download the cursor images (buttons above) or grab them here:
-- Cursor: https://cdn.cutecursors.com/images/cursors/5e4fa6ea11bcb.png
-- Pointer: https://cdn.cutecursors.com/images/pointers/5e4fa6ea11bd3.png
-- 2) Upload them in Roblox Creator Hub as Decals (Create > Decals).
-- 3) Replace the IDs below with your uploaded Image asset IDs.
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local CURSOR_ICON = "rbxassetid://CURSOR_ASSET_ID"
local POINTER_ICON = "rbxassetid://POINTER_ASSET_ID"
-- Set the default cursor
UserInputService.MouseIcon = CURSOR_ICON
-- Optional: switch to the pointer icon while hovering GUI buttons
local function hookButton(button)
button.MouseEnter:Connect(function()
UserInputService.MouseIcon = POINTER_ICON
end)
button.MouseLeave:Connect(function()
UserInputService.MouseIcon = CURSOR_ICON
end)
end
local playerGui = Players.LocalPlayer:WaitForChild("PlayerGui")
for _, gui in ipairs(playerGui:GetDescendants()) do
if gui:IsA("GuiButton") then
hookButton(gui)
end
end
playerGui.DescendantAdded:Connect(function(gui)
if gui:IsA("GuiButton") then
hookButton(gui)
end
end)
-- Kirby cursors: https://cutecursors.com//category/kirby/kirby-cute-cursorsHow to Install Kirby cursors
How to Install cursor Kirby for Chrome
Kirby
Kirby Custom Cursor Pack mit süßem Cursor für Fans des Themas.
- 1Go to Chrome Web Store
Hit the 'Add to Browser' button to get the 'Kirby' pack.
- 2Add the Extension
On the Chrome Web Store, smash that ‘Add to Chrome’ button and confirm.
- 3Pin for Easy Access
Pro-tip: Pin the 'Cute Cursors' extension to your toolbar for quick access.
- 4Activate Your Cursor
Open the extension, find the 'Kirby' pack, and click to activate. Easy peasy!
You may also like
Explore other cursor packs from our collection
Didn't Find Your Vibe?
Our universe of cursors is huge. Dive into hundreds of unique collections and find the one that truly represents you.
Explore All Collections







