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

Why will it only give me 1.5x clicks when I click the button to buy it?

Asked by 2 years ago

Can someone please tell me why I only get 1.5x clicks when I click the button to buy 1.5x clicks, but not when I click the button to give me clicks? Thanks!

01local button = script.Parent
02local player = button:FindFirstAncestorOfClass("Player")
03repeat
04    player = button:FindFirstAncestorOfClass("Player")
05    task.wait()
06until player ~= nil
07 
08local debounce = true
09button.MouseButton1Click:Connect(function()
10    if debounce then
11        debounce = false
12 
13        local leaderstats = player:WaitForChild("leaderstats")
14        local Clicks = leaderstats:WaitForChild("Clicks")
15        Clicks.Value += 1
View all 37 lines...

Answer this question