getscripthash
Returns a SHA384
hash represented in hex of the module/script's bytecode.
Parameters
script
- The script instance to get the hash of.
Example
local ScriptHash = getscripthash(game.Players.LocalPlayer.Character.Animate)
print(ScriptHash) -- Should return a non-changing SHA384 hash in hex representation
print(getscripthash(Instance.new("LocalScript"))) -- Output: nil
Last updated