Hello,
I was trying to make a Questing System, And I made it buy I saw some ppl doing this:
01 | local module = { } |
02 |
03 | module.Dialog = { |
04 |
05 | local module = { } |
06 | module.Dialog = { |
07 |
08 | [ "Quest01" ] = { |
09 | [ "Text1" ] = "Hi, Can you help me defeat some Bruters" , |
10 | [ "Response1" ] = "Sure, Where they at?" , |
11 | [ "Text1" ] = "Right Down the river" |
12 | [ "Exit" ] = "Cancel" |
13 | } |
14 | } |
15 |
16 | return module |
17 |
18 | return module |
So I saw that using that will be alot easy than just a script.
Can I know how Can I get does data into a normal Script?
Thanks for Advance