If you want to speed up your game without getting banned, you need to think like a programmer, not a hacker. You can use or Macro Recorders. These are not Roblox scripts; they are peripheral automation tools.

-- Connect to the Players.PlayerAdded event Players.PlayerAdded:Connect(function(player) -- Wait for the player's character to spawn player.CharacterAdded:Connect(function(character) -- Generate money after a short delay wait(5) generateMoney(player) end) end)