I believe this should client to the all the players but its like NOPE NOT GONNA HAPPEN! And yet there is no output?!?!!?
(I would have this a moved correctly in the script)
--Question Posted By #Gravity Tech.
001 | Ani = function () |
002 | if OldAniAllowed = = true then |
003 | for _, v in pairs (game.Players:GetPlayers()) do |
004 | local an = v:WaitForChild( 'Animate' ) |
005 | v:remove() |
006 | NewAnimations() |
007 | end end end |
008 |
009 | delay( 0 , function () Ani() end ) |
010 |
011 | NewAnimations = [==[ |
012 | function waitForChild(parent, childName) |
013 | local child = parent:findFirstChild(childName) |
014 | if child then return child end |
015 | while true do |
NewAnimations
is a string.
You can't call strings, like you are doing in line 6.
If you want, you could use loadstring(NewAnimations)()
but why you would do that, I'm not sure.
Just include that code inside the Ani
function, if that's what you mean to do.