script.Parent.MouseButton1Down:Connect(function() local plr = game.Players.LocalPlayer.leaderstats local curStage = plr.leaderstats.Stage.Value if plr.Skips.Value >= 1 then plr.Skips.Value = plr.Skips.Value - 1 wait(.5) workspace[plr.Name].HumanoidRootPart.CFrame = workspace.Spawns[curStage + 1].CFrame end end)
On line 2 you are referring to leaderstats as the player. The line should be:
local plr = game.Players.LocalPlayer