local replicatedStorage = game:GetService("ReplicatedStorage") local remoteEvents = replicatedStorage:WaitForChild("remoteEvents") local clickEvent = remoteEvents:WaitForChild("Clicks")
clickEvent.OnServerEvent:Connect(function(player) local leaderstats = player.leaderstats local multiplier = player.multiplier.Value local clicks = leaderstats.Clicks clicks.Value = clicks.Value + (1*multiplier.Value) end)
Maybe you meant to get the multiplier in the leaderstats and not the player itself. Try that.