Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function func1()
- local coal = 100
- print(coal)
- end
- function func2()
- local coal = 200
- print(coal)
- end
- function func3()
- print(coal)
- end
- local coal = 500
- print(coal)
- func3()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement