: Successfully surviving a full night awards 100 points .
: Create a folder named leaderstats inside the player when they join to store their points.
: Use the .Died event on the Humanoid to check for the CreatorTag and update the corresponding player's points. Basic Logic Example: THE RAKE: KILL EDITION POINTS GIVER SCRIPT
-- 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 . : Successfully surviving a full night awards 100 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.
: Note that in some versions like The Rake Remastered , points do not save if you leave the server. Give points for kill - Scripting Support - Developer Forum Basic Logic Example: -- Server Script inside a
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.
: Successfully surviving a full night awards 100 points .
: Create a folder named leaderstats inside the player when they join to store their points.
: Use the .Died event on the Humanoid to check for the CreatorTag and update the corresponding player's points. Basic Logic Example:
-- 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 .
: 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.
: Note that in some versions like The Rake Remastered , points do not save if you leave the server. Give points for kill - Scripting Support - Developer Forum
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.