Suty
Money Throwing

Troubleshooting

Troubleshooting

"No tienes suficiente dinero"

Your cash account is below the throw amount. The script uses the framework's cash account, not bank. Top up cash or lower Config.MaxAmount.

Animation doesn't play

  • Config.AnimDict failed to load — the script falls back to FallbackAnimDict automatically
  • If both fail, check console for RequestAnimDict errors

Bills don't have physics / fall like dropped boxes

Config.ThrowForce and Config.ThrowUpForce are too low or zero. Defaults should look "make-it-rain"-y. If you cranked them down, restore:

Config.ThrowForce   = { min = 2.0, max = 4.0 }
Config.ThrowUpForce = { min = 1.5, max = 3.5 }

Bills disappear too fast

Raise Config.DropExpireTime (default 300s) and Config.CleanupTime (default 120s). Don't push the per-client cap (Config.MaxBillsOnGround) too high — 200 bill props per client per session is the practical ceiling before performance suffers.

Custom pole dances do nothing

  • Config.EnableCustomDances = true
  • The MagicCity dance dicts (pandora@magiccityv1.1 through .10) must be streamed by some resource
  • The pole position in Config.Poles must match the actual in-world pole

Use /pole while standing/dancing at the position you want, then paste the printed coords.

Particle effect missing

Config.PtfxAsset (scr_xs_celebration) is a vanilla asset and loads on demand. If the rain particles don't show, check the script's F8 log for RequestNamedPtfxAsset errors. Some custom particle replacements can break vanilla assets.

Pickup interaction doesn't appear

  • ox_target must be started
  • Config.PickupDistance = 2.5 — you must be within this distance of a bill prop
  • Bills aren't pickable until Config.PickupSettleTime (default 1500ms) has passed after the throw

Still stuck?

Discord — include the failing command + amount + your Config.Framework.