#How to add a click noise on a clicker game

1 messages · Page 1 of 1 (latest)

feral pendant
#

How to add a click noise on a clicker game

zealous lodge
#

click

bleak panther
#

Click

slow tree
feral pendant
#

on the click button

slow tree
#

any click could be as easy as getting the players mouse

local mouse = player:getmouse()

then playing a sound at each click

slow tree
slow tree
# feral pendant on the click button
local Player = game.Players.LocalPlayer

local sound = Instance.new("Sound")
sound.SoundId = ""

script.Parent.MouseButton1Down:Connect(function()
    sound:Play()
end)

you could also integrate a debounce

twilit escarp
#

Dawg these kids gotta learn the youtube search bar

mint helm
#

Lol

#

True

feral pendant
#

ty