Certainly! Below is a simple Roblox script that creates a leaderstat named "Cash" for each player that joins the game, and sets its value to `99999999999`. You can place this script in `ServerScriptService` for it to work properly.
```lua
-- Script to create leaderstats for each player
-- Function that is called when a player joins
game.Players.PlayerAdded:Connect(function(player)
-- Create a folder for leaderstats
local leaderstats =


