Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

*Answered* Server sided animations?

Asked by 10 years ago

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.

001Ani=function()
002if OldAniAllowed==true then
003for _, v in pairs(game.Players:GetPlayers()) do
004local an=v:WaitForChild('Animate')
005v:remove()
006NewAnimations()
007end end end
008 
009delay(0,function() Ani() end)
010 
011NewAnimations = [==[
012function waitForChild(parent, childName)
013    local child = parent:findFirstChild(childName)
014    if child then return child end
015    while true do
View all 207 lines...

1 answer

Log in to vote
2
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

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.

0
Yes but is Loadstring removed? MessorAdmin 598 — 10y
0
No, just turned off. Loadstring is no longer usable in Local Scripts (Which messed up the Kohl's Admin Fly, Noclip, Crash, and Place commands). You can enable load string for Server-Side scripts in ServerScriptService. M39a9am3R 3210 — 10y
Ad

Answer this question