: Create a folder named leaderstats inside the player when they join to store their points.
If you are looking to create a script that awards points upon killing a target, you must use a that tracks the target's health and identifies the attacker.
In (and similar Roblox fan remakes), points are the primary currency used to purchase survival gear from the Shop Merchant . While "points giver" scripts are often sought after as cheats, they frequently trigger anti-cheat systems or are patched.
-- Server Script inside a Weapon or NPC humanoid.Died:Connect(function() local tag = humanoid:FindFirstChild("creator") if tag and tag.Value then local player = tag.Value player.leaderstats.Points.Value += 50 -- Amount to give end end) Use code with caution. Copied to clipboard Safety and Risks
: Use the .Died event on the Humanoid to check for the CreatorTag and update the corresponding player's points. Basic Logic Example:
: Suriving this higher-intensity event awards double points .
: Most official versions of The Rake have active anti-cheat measures. Using external exploit scripts (like those found on Pastebin) can result in a permanent ban from the game.
: Repairing the Power Station or healing other players provides extra points at the end of the night. Implementing a Points System (for Developers)