Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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):

01local cooldown = false
02local COOLDOWN_TIME = 10
03 
04local Players = game:GetService("Players")
05local plr = Players.LocalPlayer
06 
07local clickDetector = script.Parent.ClickDetector
08 
09local timeRemaining = 10
10 
11clickDetector.MouseClick:Connect(function(player)
12    if cooldown == false then
13        cooldown = true
14        player.leaderstats.Money.Value = player.leaderstats.Money.Value + math.random(1,200) * math.random(1,500) - math.random(1,5000)
15        repeat
View all 29 lines...

(Cooldown Appearance Script):

01local cooldown = false
02local CD = script.Parent.ClickDetector
03 
04CD.MouseClick:Connect(function()
05    if cooldown == false then
06        cooldown = true
07        for count = 10, 0, -1 do
08            script.Parent.Parent.ClickGiveMoneyBase.BillboardGui.TextLabel.Text = count
09            wait(1)
10        end
11        script.Parent.Parent.ClickGiveMoneyBase.BillboardGui.TextLabel.Text = "Click this Button to Give you CASH!"
12        cooldown = false
13    elseif cooldown == true then
14        return
15    end
16end)

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.

1 answer

Log in to vote
-1
Answered by 4 years ago
Edited 4 years ago

Move the localscript to StarterPlayer > StarterCharacterScripts > here, then Press workspace and on properties enable FilteringEnabled, then change

1local clickDetector = script.Parent.ClickDetector

to

1local clickDetector = workspace.Button.ClickDetector --Whatever the path is

because the parent wont be the button more. Also when adding the money of the button make it via Remote functions and to prevent exploiters add also a cooldown on the Remote function

0
WHY DOWNVOTE AlvaroG23 9 — 4y
0
Hello there! I don't know how to change the scripts to work via remote function. Can you help with this? (I have McDonald's-level WiFi so I can't open ROBLOX Studio yet) krowten024nabrU 463 — 4y
0
Also I didn't downvote you. krowten024nabrU 463 — 4y
0
Nvm, fixed it. krowten024nabrU 463 — 4y
0
Nevermind the nvm, cooldown still appears on other ppl. krowten024nabrU 463 — 4y
Ad

Answer this question