im trying to grab the value from one leaderstat and put it into another leaderstat, is that possible?
local ui = script.Parent local player = game.Players.LocalPlayer while wait() do local player = game.Players.LocalPlayer ui.Text = ""..player:WaitForChild("Equipped"):FindFirstChild("One").Value end function leftClick() player.Equipped.One.Value = player.Equipped.Current.Value end ui.MouseButton1Click:Connect(leftClick)