RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a part the script is inside of double the leaderstat of the Points leaderstat"
-- local script local part = script.Parent local function doublePoints(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then player.leaderstats.Points.Value = player.leaderstats.Points.Value * 2 end end part.Touched:Connect(doublePoints)