• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Animated Texts on Teleports

Cristian2387

New Member
Joined
Oct 2, 2014
Messages
34
Reaction score
0
Hello, what i want is a script that sends an animated text to a certain position in my server and that will keep changing color so for example lets say the message is hum green and then after it disappears it changes color lets say to red, i have this scripts right here the only problem with the script is that it doesnt change color, this is my script:
Code:
function onThink(interval, lastExecution)
pos = {x = x, y = x, z = x}
doSendAnimatedText(pos, 'x', 53)
return true
end
please help =)
 
Code:
function onThink(interval, lastExecution)
pos = {x = x, y = x, z = x}
doSendAnimatedText(pos, 'x', math.random(256))
return true
end

edit---
sorry didn't see @Limos just posted
 
Back
Top