Skip to content

Instantly share code, notes, and snippets.

@LateralLines
Last active June 13, 2017 02:57
Show Gist options
  • Save LateralLines/c4c2295b42f2ba8ada3aeef292ce1cb1 to your computer and use it in GitHub Desktop.
Save LateralLines/c4c2295b42f2ba8ada3aeef292ce1cb1 to your computer and use it in GitHub Desktop.
Copy all contents in following form into command bar and enjoy :)
base = Instance.new("Script",game.ServerStorage)
PluginManager():CreatePlugin():OpenScript(base)
states = {[[-----
0
/|\
/ \
-----]],
[[-----
\0
|\
/ \
-----]],
[[-----
\0/
|
/ \
-----]],
[[-----
\0/
|
/ \
-----]],
[[-----
\0/
|
/ \
-----]],
[[-----
\0/
|
/ \
-----]],
[[-----
\0/
|
/ \
-----]],
[[-----
0/
/|
/ \
-----]],
[[-----
0
/|\
/ \
-----]]
}
i = 0
active = true
watch = base.Parent.ChildRemoved:connect(function(child)
if child == base then
active = false
watch:Disconnect()
end
end)
while active do
print(base)
if i+1 < 10 then
i = i + 1
base.Source = states[i]
else
i = 1
base.Source = states[i]
end
wait(.1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment