From 1712f61d9ffe2476d322b17386d91d86f5d9e38a Mon Sep 17 00:00:00 2001 From: Lava <69821200+RealLava@users.noreply.github.com> Date: Sun, 21 May 2023 23:26:55 -0700 Subject: [PATCH] Update source --- source | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/source b/source index 1840478f..26142e7c 100644 --- a/source +++ b/source @@ -4250,6 +4250,8 @@ CMDs = {} CMDs[#CMDs + 1] = {NAME = 'discord / support / help', DESC = 'Invite to the Infinite Yield support server.'} CMDs[#CMDs + 1] = {NAME = 'console', DESC = 'Loads old Roblox console'} CMDs[#CMDs + 1] = {NAME = 'explorer / dex', DESC = 'Opens DEX by Moon'} +CMDs[#CMDs + 1] = {NAME = 'dab / fedab', DESC = 'Starts a dab animation'} +CMDs[#CMDs + 1] = {NAME = 'undab / unfedab', DESC = 'Stops a dab animation'} CMDs[#CMDs + 1] = {NAME = 'olddex / odex', DESC = 'Opens Old DEX by Moon'} CMDs[#CMDs + 1] = {NAME = 'remotespy / rspy', DESC = 'Opens Simple Spy V3'} CMDs[#CMDs + 1] = {NAME = 'audiologger / alogger', DESC = 'Opens Edges audio logger'} @@ -9931,6 +9933,28 @@ addcmd('deleteselectedtool',{'dst'},function(args, speaker) end end) +local isdab = false +local animationInstance = nil +addcmd('dab', {'fedab'}, function(args, speaker) +if isdab then +return +else +local animationId = "248263260" +local anim = Instance.new("Animation") +anim.AnimationId = "rbxassetid://" .. animationId +animationInstance = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(anim) +animationInstance:Play() +animationInstance:AdjustSpeed(1) +end +end) + +addcmd('undab', {'unfedab'}, function(args, speaker) +if animationInstance then +animationInstance:Stop() +animationInstance = nil +end +end) + addcmd('console',{},function(args, speaker) -- Thanks wally!! notify("Loading",'Hold on a sec')