Activity Feed
Created a new thread: [Request] Good Dropdown library?
Throw me some good dropdown libraries other than Wally.
Replied to thread: [HELP] Rayfield Library
I'm pretty sure it's because there's something preventing the new tab function to fire, are you sure you haven't put any infinite loops there? If not, I'd recommend going to the Sirius forums for help.
Replied to thread: CW ON MEDUSA LYING ABT ME
Hello guys, I'm going to go foto shopping today, you guys want anything?
Replied to thread: Animation script issue
The animations are based on the Humanoid And HumanoidRootPart, It's destroyed when you're character dies so I'd prefer you create a gui to execute the script from within the game. Or else you could modify the script to re-execute the script when HumanoidRootPart is destroyed.
In order to do that you can put the script in a function and put a while true do under the function
You can use if not if it still works in the script below. I'm not sure if this is relevant though.
function Build()
--script here
end
while true do
if game.Players.LocalPlayer.Character.HumanoidRootPart then
--Do nothing cause you haven't died.
else
Build() -- Rexecute script
end
end