How to make an event happen on only the Client that clicked the button/part?
Asked by
4 years ago Edited 4 years ago
I've been trying to make a Click for Cash button in Roblox, only to find out that the cooldown/debounce can also happen to other players. I've tried switching the Scripts to Local Scripts, but it does not work (I'm a beginner at coding) This is my code right now (Getting Money Script):
02 | local COOLDOWN_TIME = 10 |
04 | local Players = game:GetService( "Players" ) |
05 | local plr = Players.LocalPlayer |
07 | local clickDetector = script.Parent.ClickDetector |
09 | local timeRemaining = 10 |
11 | clickDetector.MouseClick:Connect( function (player) |
12 | if cooldown = = false then |
14 | player.leaderstats.Money.Value = player.leaderstats.Money.Value + math.random( 1 , 200 ) * math.random( 1 , 500 ) - math.random( 1 , 5000 ) |
18 | timeRemaining = timeRemaining - 1 |
19 | until timeRemaining = = 0 |
20 | if timeRemaining = = 0 then |
26 | elseif cooldown = = true then |
(Cooldown Appearance Script):
02 | local CD = script.Parent.ClickDetector |
04 | CD.MouseClick:Connect( function () |
05 | if cooldown = = false then |
07 | for count = 10 , 0 , - 1 do |
08 | script.Parent.Parent.ClickGiveMoneyBase.BillboardGui.TextLabel.Text = count |
11 | script.Parent.Parent.ClickGiveMoneyBase.BillboardGui.TextLabel.Text = "Click this Button to Give you CASH!" |
13 | elseif cooldown = = true then |
More clearance to my problem: When a player clicks and cooldown happens, it not only happens on the player that clicked the part, but also on other players in the server.