Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local chance1 = math.random()
- if chance1 < .5 then
- print("Hello World")
- elseif
- end
- --50-50% chance script
- local chance2 = math.random()
- if chance2 < .000001 then
- print("Hello World")
- elseif
- end
- --1/1,000,000 chance script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement