server sided 1 script : Old Animations?
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.
002 | if OldAniAllowed = = true then |
003 | for _, v in pairs (game.Players:GetPlayers()) do |
004 | local an = v:WaitForChild( 'Animate' ) |
009 | delay( 0 , function () Ani() end ) |
012 | function waitForChild(parent, childName) |
013 | local child = parent:findFirstChild(childName) |
014 | if child then return child end |
016 | child = parent.ChildAdded:wait() |
017 | if child.Name==childName then return child end |
020 | local Figure = script.Parent |
021 | local Torso = waitForChild(Figure, "Torso") |
022 | local RightShoulder = waitForChild(Torso, "Right Shoulder") |
023 | local LeftShoulder = waitForChild(Torso, "Left Shoulder") |
024 | local RightHip = waitForChild(Torso, "Right Hip") |
025 | local LeftHip = waitForChild(Torso, "Left Hip") |
026 | local Neck = waitForChild(Torso, "Neck") |
027 | local Humanoid = waitForChild(Figure, "Humanoid") |
028 | local pose = "Standing" |
029 | local toolAnim = "None" |
030 | local toolAnimTime = 0 |
031 | local jumpMaxLimbVelocity = 0.75 |
032 | function onRunning(speed) |
048 | function onGettingUp() |
052 | pose = "FreeFall" -- e.e 0MG IM G0NN@ DIED!!!1!11! |
054 | function onFallingDown() |
060 | function onPlatformStanding() |
061 | pose = "PlatformStanding" |
063 | function onSwimming(speed) |
071 | RightShoulder.MaxVelocity = jumpMaxLimbVelocity |
072 | LeftShoulder.MaxVelocity = jumpMaxLimbVelocity |
073 | RightShoulder:SetDesiredAngle(3.14) |
074 | LeftShoulder:SetDesiredAngle(-3.14) |
075 | RightHip:SetDesiredAngle(0) |
076 | LeftHip:SetDesiredAngle(0) |
078 | function moveFreeFall() |
079 | RightShoulder.MaxVelocity = jumpMaxLimbVelocity |
080 | LeftShoulder.MaxVelocity = jumpMaxLimbVelocity |
081 | RightShoulder:SetDesiredAngle(3.14) |
082 | LeftShoulder:SetDesiredAngle(-3.14) |
083 | RightHip:SetDesiredAngle(0) |
084 | LeftHip:SetDesiredAngle(0) |
087 | RightShoulder.MaxVelocity = 0.15 |
088 | LeftShoulder.MaxVelocity = 0.15 |
089 | RightShoulder:SetDesiredAngle(3.14 /2) |
090 | LeftShoulder:SetDesiredAngle(-3.14 /2) |
091 | RightHip:SetDesiredAngle(3.14 /2) |
092 | LeftHip:SetDesiredAngle(-3.14 /2) |
095 | for _, kid in ipairs(Figure:GetChildren()) do |
096 | if kid.className == "Tool" then return kid end |
100 | function getToolAnim(tool) |
101 | for _, c in ipairs(tool:GetChildren()) do |
102 | if c.Name == "toolanim" and c.className == "StringValue" then |
108 | function animateTool() |
109 | if (toolAnim == "None") then |
110 | RightShoulder:SetDesiredAngle(1.57) |
113 | if (toolAnim == "Slash") then |
114 | RightShoulder.MaxVelocity = 0.5 |
115 | RightShoulder:SetDesiredAngle(0) |
118 | if (toolAnim == "Lunge") then |
119 | RightShoulder.MaxVelocity = 0.5 |
120 | LeftShoulder.MaxVelocity = 0.5 |
121 | RightHip.MaxVelocity = 0.5 |
122 | LeftHip.MaxVelocity = 0.5 |
123 | RightShoulder:SetDesiredAngle(1.57) |
124 | LeftShoulder:SetDesiredAngle(1.0) |
125 | RightHip:SetDesiredAngle(1.57) |
126 | LeftHip:SetDesiredAngle(1.0) |
133 | if (pose == "Jumping") then |
137 | if (pose == "FreeFall") then |
141 | if (pose == "Seated") then |
146 | if (pose == "Running") then |
147 | if (RightShoulder.CurrentAngle > 1.5 or RightShoulder.CurrentAngle < -1.5) then |
148 | RightShoulder.MaxVelocity = jumpMaxLimbVelocity |
150 | RightShoulder.MaxVelocity = 0.15 |
152 | if (LeftShoulder.CurrentAngle > 1.5 or LeftShoulder.CurrentAngle < -1.5) then |
153 | LeftShoulder.MaxVelocity = jumpMaxLimbVelocity |
155 | LeftShoulder.MaxVelocity = 0.15 |
159 | elseif (pose == "Climbing") then |
160 | RightShoulder.MaxVelocity = 0.5 |
161 | LeftShoulder.MaxVelocity = 0.5 |
169 | local desiredAngle = amplitude * math.sin(time*frequency) |
170 | RightShoulder:SetDesiredAngle(desiredAngle + climbFudge) |
171 | LeftShoulder:SetDesiredAngle(desiredAngle - climbFudge) |
172 | RightHip:SetDesiredAngle(-desiredAngle) |
173 | LeftHip:SetDesiredAngle(-desiredAngle) |
174 | local tool = getTool() |
176 | local animStringValueObject = getToolAnim(tool) |
177 | if animStringValueObject then |
178 | toolAnim = animStringValueObject.Value |
179 | animStringValueObject.Parent = nil |
180 | toolAnimTime = time + .3 |
182 | if time > toolAnimTime then |
192 | Humanoid.Died:connect(onDied) |
193 | Humanoid.Running:connect(onRunning) |
194 | Humanoid.Jumping:connect(onJumping) |
195 | Humanoid.Climbing:connect(onClimbing) |
196 | Humanoid.GettingUp:connect(onGettingUp) |
197 | Humanoid.FreeFalling:connect(onFreeFall) |
198 | Humanoid.FallingDown:connect(onFallingDown) |
199 | Humanoid.Seated:connect(onSeated) |
200 | Humanoid.PlatformStanding:connect(onPlatformStanding) |
201 | Humanoid.Swimming:connect(onSwimming) |
202 | local runService = game:service("RunService"); |
203 | while Figure.Parent~=nil do |
204 | local _, time = wait(0.1) |