Answered by
6 years ago Edited 6 years ago
You can't change a value on the server from a local script on filtering enabled games because it won't replicate to other clients. Filtering will make sure this change is not replicated. You should use a remote event or a remote function to do this, preferably a remote event.
You should try something like this:
(Please note, this is very easy to exploit, apply some good security to your remotes.)
Server:
05 | local RE = Instance.new( "RemoteEvent" , game.ReplicatedStorage)) |
08 | RE.OnServerEvent:Connect( function (self, value) |
09 | self.leaderstats.Cash.Value = self.leaderstats.Cash.Value + value |
Client:
05 | until game:GetService( "Players" ).LocalPlayer |
07 | local lp = game.Players.LocalPlayer |
08 | local lpM = lp:GetMouse() |
10 | local randomizeAmount = true |
12 | lp.Backpack:WaitForChild( "AdvancedCard" ).Equipped:Connect( function () |
13 | local debounce = false |
14 | lpM.MouseButton 1 Down:Connect( function () |
15 | if debounce = = true then |
17 | debounce = not debounce |
19 | if randomizeAmount = = true then |
20 | game.ReplicatedStorage.UpdateCash:FireServer(math.random( 15 , 20 )) |
22 | game.ReplicatedStorage.UpdateCash:FireServer( 1 ) |
24 | debounce = not debounce |
Sorry if I left behind any errors or bad coding habits, un-testing code and kind of rushing.