The Rake: Kill Edition Points Giver Script -
: Use the .Died event on the Humanoid to check for the CreatorTag and update the corresponding player's points. Basic Logic Example:
: 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. THE RAKE: KILL EDITION POINTS GIVER SCRIPT
: When a player or NPC is hit, a CreatorTag (ObjectValue) should be added to their Humanoid, referencing the attacker. : Use the
: Suriving this higher-intensity event awards double points . : When a player or NPC is hit,
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
: Dealing damage and being present for the killing blow can award up to the usual points .