trashhdrip

Untitled

Apr 11th, 2023
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. --// DISCLAIMER: Don't use math.huge, that'll get you banned
  5. --// USAGE: Just jump off your building and once you land, you'll receive the amout of cash set below
  6. --// Made by ⚔Saint#6099
  7.  
  8. local A_Number = 5000000 --// This would be the cash you receive
  9. local B_Number = 500 --// Idk wtf this shit is
  10.  
  11. local OldNamecall
  12.  
  13. OldNamecall = hookmetamethod(game, "__namecall", function(Self, ...)
  14. local Args = {...}
  15.  
  16. if tostring(Self) == "validate_skydive" then
  17. Args[1] = A_Number
  18. Args[2] = B_Number
  19.  
  20. return Self.FireServer(Self, unpack(Args))
  21. end
  22.  
  23. return OldNamecall(Self, ...)
  24. end)
Add Comment
Please, Sign In to add comment