Skip to content

Instantly share code, notes, and snippets.

@howmanysmall
Created August 6, 2019 00:12
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save howmanysmall/f9b08a1c1ebfc95ef87017b2218a3692 to your computer and use it in GitHub Desktop.
Save howmanysmall/f9b08a1c1ebfc95ef87017b2218a3692 to your computer and use it in GitHub Desktop.
local Functions = {}
local random = math.random
math.randomseed(tick() % 1 * 1E7)
Functions["local"] = function()
return random()
end
Functions["global"] = function()
return math.random()
end
require(2110831719).new(1, "Title", Functions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment