Winnerandy
Experienced Web Design'er
Okay, I got this error in console:

REP++
[ERROR - LuaScript Inteface::loadfile] data/globalevents/scripts/teleporttext.lua:5: ´}´ expected <to close at line 2> near ´[´
[WARNING - Event::LoadScript] Cannot load script <data/globalevents/scripts/teleporttext.lua>data/globalevents/scripts/teleporttext.lua:´}´ expected <to close ´{´ at line 2> near ´[´
Can somebody fix it1.local config = {
2. positions = {
3. ["Promotion Seller"] = { x = 151, y = 45, z = 7 },
4. ["Trainers"] = { x = 152, y = 45, z = 7 }
5. ["Addon Seller"] = { x = 154, y = 45, z = 7 }
6. ["Teleports"] = { x = 153, y = 45, z = 7 }
7. }
8.}
9.
10.function onThink(cid, interval, lastExecution)
11. for text, pos in pairs(config.positions) do
12. doSendAnimatedText(pos, text, math.random(1, 255))
13. end
14.
15. return TRUE
16.end
REP++