#How to add a click noise on a clicker game
1 messages · Page 1 of 1 (latest)
click
Click
clicking in the sense of just, any click? or clicks on specific parts?
on the click button
any click could be as easy as getting the players mouse
local mouse = player:getmouse()
then playing a sound at each click
detect a click on the ui then?
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
Dawg these kids gotta learn the youtube search bar
ty