Advertisement
memesbruh03

KD MLG3

Jan 5th, 2017
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 54.11 KB | None | 0 0
  1. --[[
  2.     KrystalDance: MLG edit No. 3 by adchand2
  3.     credit to everyone...
  4.     New updates (from MLG2 v6 to MLG3): The VBNM keys are used now. V, B & N is
  5.                                         used to change the music. M is to show
  6.                                         or hide advanced music stats.
  7.    
  8.     © 2016-17 adchand2/memesbruh03.
  9.                                                                                     ]]
  10.  
  11. wait(0)
  12. Player = game.Players.LocalPlayer
  13. WorkPlayer = workspace:FindFirstChild(Player.Name)
  14.  
  15. local count = 0
  16. local countspeed = 1
  17. local sine = 0
  18. local sinespeed = 1
  19. local angle = nil
  20. local global_wait = 0
  21. local showtag = true
  22. local smode = 1
  23. local advan = false
  24. local forcheck = 0
  25. -- Smodes: 1 = Original, 2 = Others, 3 = From the 1st Edit
  26.  
  27. function inform2(var)
  28. t=game:GetService("Chat")
  29. t:Chat(WorkPlayer.FalseHead,var,math.random(0,2))
  30. end
  31.  
  32. --dance booleans--
  33. local unity = false -- jawn
  34. local _2_much_power = false -- harlem_dank
  35. local some_power = false -- nova_fire
  36. local haha_no = false -- this_is_epic
  37. local spin_round = false -- gta_loud
  38. local still_not_that_fast = false -- sanic_x
  39. local tetris_remix = false -- mlg_dubbs
  40. local dat_boi = false -- _2204355
  41. local memes = false -- mlg_style
  42. local scary_monsters_nice_sprites_remix = false -- paper_mario
  43. local rus = false -- otis
  44. local it_s_already_that_old = false -- LJN
  45. local pootis_avi = false -- ITS_NO_USE
  46. local buelah_mp3 = false -- spm
  47. local antivirisis = false -- stylo
  48. local look_at_this_dude = false -- nedm
  49. ------------------
  50. --dance accessory--
  51. local barrelbrick = nil
  52. local saxtool = nil
  53. -------------------
  54. --custom animate--
  55. local walk = false
  56. local jump = false
  57. local sit = false
  58. local run = false
  59. ------------------
  60. --walk keys--
  61. local W = false
  62. local A = false
  63. local S = false
  64. local D = false
  65. -------------
  66. local m = Instance.new("Model",game.Players.LocalPlayer.Character) m.Name = "ModelParts"
  67. local miniweld = nil
  68. local rootpart = nil
  69.  
  70. local Mouse = nil
  71. local Animate = nil
  72. local Music = nil
  73. local Asset = "http://www.roblox.com/asset/?id="
  74. local Animating = nil
  75. local humanoid = nil
  76. local face = nil
  77.  
  78. local head = nil
  79. local torso = nil
  80. local ra = nil
  81. local la = nil
  82. local rl = nil
  83. local ll = nil
  84. local rs = nil
  85. local ls = nil
  86. local rh = nil
  87. local lh = nil
  88. local neck = nil
  89. local rj = nil
  90.  
  91. local char = nil
  92. local Hat1 = nil
  93. local Hat2 = nil
  94. local a,b = nil
  95.  
  96. ----------musics-----------------
  97. local M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15,M16 = nil
  98. ---------------------------------
  99.  
  100. local mesh,meshids,textureids,w
  101.  
  102. function fm(parent,meshid,x,y,z,meshtexture)
  103. if meshid == "cylinder" then
  104.     mesh = Instance.new("CylinderMesh",parent)
  105.     mesh.Scale = Vector3.new(x,y,z)
  106.     return mesh
  107. else
  108.     mesh = Instance.new("SpecialMesh",parent)
  109.     if meshid ~= "sphere" then
  110.         if type(meshid) == "number" then mesh.MeshId = "rbxassetid://"..meshid else
  111.             mesh.MeshId = "rbxassetid://"..meshids[meshid]
  112.         end
  113.     else mesh.MeshType = 3 end
  114.     mesh.Scale = Vector3.new(x,y,z)
  115.     if meshtexture ~= nil then
  116.         if type(meshtexture) == "number" then
  117.             mesh.TextureId = "rbxassetid://"..meshtexture
  118.         else
  119.             mesh.TextureId = "rbxassetid://"..textureids[meshtexture] end
  120.         end
  121.     return mesh
  122.     end
  123. end
  124.  
  125. function P(x,y,z,color,transparency,cancollide,anchored,parent,typee)
  126. if typee ~= nil then
  127.     c = Instance.new("WedgePart",m)
  128. else
  129.     c = Instance.new("Part",m)
  130. end
  131. c.TopSurface,c.BottomSurface = 0,0
  132. c.Locked = true
  133. c.formFactor = "Custom"
  134. c.Size = Vector3.new(x,y,z)
  135. if color ~= "random" then
  136.     c.BrickColor = BrickColor.new(color)
  137. else
  138.     c.BrickColor = BrickColor:random()
  139. end
  140. c.Transparency = transparency
  141. c.CanCollide = cancollide
  142. if anchored ~= nil then
  143.     c.Anchored = anchored
  144. end
  145. if parent ~= nil then
  146.     c.Parent = parent
  147. end
  148. return c
  149. end
  150.  
  151. function We(part0,part1,x,y,z,rx,ry,rz,parent)
  152. w = Instance.new("Motor",m)
  153. if parent ~= nil then w.Parent = parent end
  154.     w.Part0,w.Part1 = part0,part1
  155.     w.C1 = CFrame.new(x,y,z) * CFrame.Angles(rx,ry,rz)
  156.     return w
  157. end
  158.  
  159. function SetAnimation(id,humanoid)
  160.     if Animating ~= nil then
  161.         Animating:Stop()
  162.     end
  163.     Animate.AnimationId = Asset .. id
  164.     Animating = humanoid:LoadAnimation(Animate)
  165.     Animating:Play()
  166. end
  167.  
  168. function AnimationStop()
  169.         unity = false
  170.         _2_much_power = false
  171.         some_power = false
  172.         haha_no = false
  173.         spin_round = false
  174.         still_not_that_fast = false
  175.         tetris_remix = false
  176.         dat_boi = false
  177.         memes = false
  178.         scary_monsters_nice_sprites_remix = false
  179.         rus = false
  180.         it_s_already_that_old = false
  181.         pootis_avi = false
  182.         buelah_mp3 = false
  183.         antivirisis = false
  184.         look_at_this_dude = false
  185.         if barrelbrick ~= nil then
  186.             barrelbrick:Remove()
  187.             barrelbrick = nil
  188.         end
  189.         if saxtool ~= nil then
  190.             saxtool:Remove()
  191.             saxtool = nil
  192.         end
  193.         if sandstorm ~= nil then
  194.             sandstorm:Remove()
  195.             sandstorm = nil
  196.         end
  197. end
  198.  
  199. local Musical
  200. function SetMusic(id,name,volume)
  201.     Musical = Instance.new("Sound",char.Head)
  202.     if volume == nil then
  203.         Musical.Volume = 1
  204.     else
  205.         Musical.Volume = volume
  206.     end
  207.     Musical.Looped = true
  208.     Musical.SoundId = Asset .. id
  209.     Musical.Name=name
  210.     return Musical
  211. end
  212.  
  213. function GenerateGui()
  214.     a=Instance.new("ScreenGui")
  215.     a.Name = "KrystalDance By KrystalTeam - mlg2 edit by adchand2"
  216.     b=Instance.new("ImageLabel",a)
  217.     b.BackgroundTransparency = 1
  218.     b.Size = UDim2.new(0,250,0,100)
  219.     b.Position = UDim2.new(0,0,1,0)
  220.     b.Image = Asset .. "269467798"
  221.     b.Name = "Logo"
  222.     c=Instance.new("TextLabel",b)
  223.     c.Size = UDim2.new(1,0,0,10)
  224.     c.BackgroundTransparency = 1
  225.     c.Text = "adchand2's MLG edit of:"
  226.     c.FontSize = Enum.FontSize.Size11
  227.     c.Font = math.random(0,15)
  228.     c.TextColor3 = Color3.fromRGB(255,255,255)
  229.     --[[b1=Instance.new("TextButton",a)
  230.     b1.Text="Change Face"
  231.     b1.Style="RobloxRoundButton"
  232.     b1.FontSize = Enum.FontSize.Size14
  233.     b1.Font = Enum.Font.SourceSansLight
  234.     b1.Position = UDim2.new(0.4,0,0,0)
  235.     b1.Size = UDim2.new(0,80,0,20)
  236.     b2=Instance.new("TextButton",a)
  237.     b2.Text="Change Body Colours"
  238.     b2.Style="RobloxRoundButton"
  239.     b2.FontSize = Enum.FontSize.Size14
  240.     b2.Font = Enum.Font.SourceSansLight
  241.     b2.Position = UDim2.new(0.4,80,0,0)
  242.     b2.Size = UDim2.new(0,120,0,20)
  243.     b3=Instance.new("TextButton",a)
  244.     b3.Text="BGM ID List"
  245.     b3.Style="RobloxRoundButton"
  246.     b3.FontSize = Enum.FontSize.Size14
  247.     b3.Font = Enum.Font.SourceSansLight
  248.     b3.Position = UDim2.new(0.4,200,0,0)
  249.     b3.Size = UDim2.new(0,70,0,20)
  250.     b4=Instance.new("TextButton",a)
  251.     b4.Text="Settings"
  252.     b4.Style="RobloxRoundButton"
  253.     b4.FontSize = Enum.FontSize.Size14
  254.     b4.Font = Enum.Font.SourceSansLight
  255.     b4.Position = UDim2.new(0.4,270,0,0)
  256.     b4.Size = UDim2.new(0,60,0,20)]]
  257.     return a
  258. end
  259.  
  260. function Generate(player)
  261. char = player.Character
  262. Hat1 = P(1,1,1,'Black',0,false,false)
  263. Hat2 = P(1,1,1,'Black',0,false,false)
  264. wait()
  265. a=fm(Hat1,121910245,0.7,0.5,0.7,121947422) a.VertexColor = Vector3.new(1,1,1)
  266. b=fm(Hat2,13030731,0.95,0.95,0.95,13030735) b.VertexColor = Vector3.new(1,1,1)
  267. wait()
  268. if char:FindFirstChild("Head") then
  269.     We(Hat1,char.Head,0,0.25,-0.135,0,0,0)
  270.     We(Hat2,char.Head,0,0.8,0,0,0,0)
  271.     if char.head:FindFirstChild("face") ~= nil then
  272.         face = char.head:FindFirstChild("face")
  273.         face.Texture = "rbxassetid://318401263"
  274.     end
  275.     c=char.Head:clone()
  276.     c.Name = "FalseHead"
  277.     c.CanCollide = false
  278.     c.Parent = char
  279.     We(c,char.Head,0,0,0,0,0,0)
  280.     char.Head.Transparency = 1
  281.     for i,v in pairs(char:GetChildren()) do
  282.         if v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "Accessory" or v.ClassName == "CharacterMesh" or v.ClassName == "ShirtGraphic" then
  283.             v:Remove()
  284.         end
  285.         if v.ClassName == "BodyColors" then
  286.             v.HeadColor = BrickColor.new("Cool yellow")
  287.             v.LeftArmColor = BrickColor.new("Cool yellow")
  288.             v.LeftLegColor = BrickColor.new("Bright blue")
  289.             v.RightArmColor = BrickColor.new("Cool yellow")
  290.             v.RightLegColor = BrickColor.new("Bright blue")
  291.             v.TorsoColor = BrickColor.new("Dark green")
  292.         end
  293.         if v.ClassName == "Part" then
  294.             if v.Name == "Head" or v.Name == "FalseHead" then
  295.                 v.BrickColor = BrickColor.new("Cool yellow")
  296.                 else
  297.                 v.BrickColor = BrickColor.new("Cool yellow")
  298.             end
  299.         end
  300.     end
  301. ----------musics---------------
  302.     M1=SetMusic(482893067,"M1") -- some_power, front_page (561274893), nova_fire (168340433) [Q]
  303.     M2=SetMusic(408731259,"M2") -- _2_much_power, flow (273029844), harlem_dank (265576262) [E]
  304.     M3=SetMusic(257341751,"M3") -- unity, always_lying (421360692), jawn (142523507) [R]
  305.     M4=SetMusic(258500169,"M4") -- haha_no, ok_you_re_hearing_some_cancerous_stuff_i_give_up_now (416308003), this_is_epic (151021035) [T]
  306.     M5=SetMusic(187013797,"M5") -- spin_round, hard_one (462957432), gta_loud (253539621) [Y]
  307.     M6=SetMusic(224705079,"M6") -- still_not_that_fast, ok (385741330), sanic_x (178752763) [U]
  308.     M7=SetMusic(200624713,"M7") -- tetris_remix, it_s_low (334046170), mlg_dubbs (340617496) [F]
  309.     M8=SetMusic(410806544,"M8") -- dat_boi, ayyyyyyyyyyyyyyyyyyyyyyyy_lmao (400663465), _2204355 (142355221) [P]
  310.     M9=SetMusic(242178814,"M9") -- memes, TGG (297802798), mlg_style (362846090) [G]
  311.     M10=SetMusic(142375403,"M10") -- scary_monsters_nice_sprites_remix, yeah_bass (410005698), paper_mario (145369820) [H]
  312.     M11=SetMusic(542441126,"M11") -- rus, we_rise (427801633), otis (142308159) [J]
  313.     M12=SetMusic(501548847,"M12") -- it_s_already_that_old, yeah (277253359), LJN (167373003) [K]
  314.     M13=SetMusic(336581561,"M13") -- pootis_avi, it_s_metal (184740384), ITS_NO_USE (130844716) [L]
  315.     M14=SetMusic(214285554,"M14") -- buelah_mp3, GOOD_JOB (225074231), spm (202234516)[Z]
  316.     M15=SetMusic(278068026,"M15") -- antivirisis, hardness (265479911), stylo (144940679) [X]
  317.     M16=SetMusic(424610918,"M16") -- look_at_this_dude, hard_bass (324499479), nedm (138811227) [C]
  318. -------------------------------
  319.    
  320.     if char:FindFirstChild("HumanoidRootPart") ~= nil then
  321.         rootpart = char:FindFirstChild("HumanoidRootPart")
  322.     end
  323.     if showtag == true then
  324.         local bbg = Instance.new("BillboardGui",c)
  325.         bbg.Adornee = c
  326.         bbg.Name = "NametagGUI"
  327.         bbg.Size = UDim2.new(6,0,1.5,0)
  328.         bbg.StudsOffset = Vector3.new(0,2,0)
  329.         local fram = Instance.new("ImageLabel",bbg)
  330.         fram.Image = Asset.."506843247"
  331.         fram.Size = UDim2.new(1,0,1,0)
  332.         fram.BackgroundColor3 = Color3.new(0,0,0)
  333.         fram.BackgroundTransparency = 1
  334.         fram.BorderSizePixel = 0
  335.         local box = Instance.new("TextLabel",fram)
  336.         box.Size = UDim2.new(1,0,1,0)
  337.         box.BackgroundColor = BrickColor.new("White")
  338.         box.TextColor3 = Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255))
  339.         box.TextStrokeTransparency = 0.5
  340.         box.Font = math.random(0,15)
  341.         box.Text = Player.Name
  342.         box.BackgroundTransparency = 1
  343.         box.BorderSizePixel = 0
  344.         box.Position = UDim2.new(0,0,0,0)
  345.         box.TextScaled = true
  346.     end
  347.     if char:FindFirstChild("Humanoid") ~= nil then
  348.         char:FindFirstChild("Humanoid").MaxHealth = (100*100*100*100)*100
  349.         wait()
  350.         char:FindFirstChild("Humanoid").Health = char:FindFirstChild("Humanoid").MaxHealth
  351.         --char:FindFirstChild("Humanoid").Name = game.Players.LocalPlayer.Name
  352.         humanoid = char:FindFirstChild("Humanoid")
  353.         if humanoid:FindFirstChild("Animator") ~= nil then
  354.             humanoid:FindFirstChild("Animator"):Remove()
  355.             --Instance.new("Animator",humanoid)
  356.         end
  357.         if char:FindFirstChild("Animate") ~= nil then
  358.             char:FindFirstChild("Animate"):Remove()
  359.         end
  360.     end
  361.     Mouse = player:GetMouse()
  362.     Music = Instance.new("Sound",char.Head)
  363.     Music.Volume = 1
  364.     Music.Looped = true
  365.     Music.SoundId = Asset
  366.     Animate = Instance.new("Animation",char.Head)
  367.     Animate.AnimationId = Asset
  368.    
  369.    
  370.    
  371.     head = char:FindFirstChild("Head")
  372.     torso = char:FindFirstChild("Torso")
  373.     ra = char:findFirstChild("Right Arm")
  374.     la = char:findFirstChild("Left Arm")
  375.     rl = char:findFirstChild("Right Leg")
  376.     ll = char:findFirstChild("Left Leg")
  377.     rs = torso:findFirstChild("Right Shoulder")
  378.     ls = torso:findFirstChild("Left Shoulder")
  379.     rh = torso:findFirstChild("Right Hip")
  380.     lh = torso:findFirstChild("Left Hip")
  381.     neck = torso:findFirstChild("Neck")
  382.     rj = char:findFirstChild("HumanoidRootPart"):findFirstChild("RootJoint")
  383.    
  384.     state = humanoid:GetState()
  385.     local ca = nil
  386.     ca=GenerateGui()
  387.     ca.Parent = player.PlayerGui
  388.     if ca:FindFirstChild("Logo") ~= nil then
  389.         ca:FindFirstChild("Logo"):TweenPosition(UDim2.new(0, 0, 1, -100), "Out", "Elastic", 3, true)
  390.         if ca:FindFirstChild("Intro") ~= nil then
  391.             ca:FindFirstChild("Intro"):Play()
  392.             coroutine.resume(coroutine.create(function()
  393.                 for i=0,30 do
  394.                     ca:FindFirstChild("Intro").Volume = 1/(i/2)
  395.                     wait(0.5)
  396.                     if i >= 30 then
  397.                         break
  398.                     end
  399.                 end
  400.             end))
  401.         end
  402.     end
  403.  
  404.     if humanoid ~= nil then
  405.         humanoid.Changed:connect(function(pro)
  406.             if pro == "MoveDirection" or pro == "Jump" then
  407.                 if Music.IsPlaying == true then
  408.                     AnimationStop()
  409.                 end
  410.             end
  411.         end)
  412.         humanoid.Died:connect(function()
  413.             AnimationStop()
  414.         end)
  415.        
  416.     Mouse.KeyUp:connect(function(key)
  417.         if key == "w" then
  418.             W = false
  419.         end
  420.         if key == "a" then
  421.             A = false
  422.         end
  423.         if key == "s" then
  424.             S = false
  425.         end
  426.         if key == "d" then
  427.             D = false
  428.         end
  429.         if string.byte(key) == 48 then
  430.             run = false
  431.         end
  432.     end)
  433.        
  434.     Mouse.KeyDown:connect(function(key)
  435.         if key == "w" then
  436.             W = true
  437.             AnimationStop()
  438.         end
  439.         if key == "a" then
  440.             A = true
  441.             AnimationStop()
  442.         end
  443.         if key == "s" then
  444.             S = true
  445.             AnimationStop()
  446.         end
  447.         if key == "d" then
  448.             D = true
  449.             AnimationStop()
  450.         end
  451.     end)
  452.    
  453.    
  454.    
  455.     Mouse.KeyDown:connect(function(key)
  456.         KeyUsed(key)
  457.     end)
  458. end
  459. end
  460. inform2("KrystalDance MLG3 - © 2016-17 adchand2/memesbruh03.")
  461. end
  462.  
  463. function inform(var)
  464. local bbg = Instance.new("BillboardGui",WorkPlayer.FalseHead)
  465.         bbg.Adornee = bbg.Parent
  466.         bbg.Name = "Input"
  467.         bbg.Size = UDim2.new(6,0,1.5,0)
  468.         bbg.StudsOffset = Vector3.new(0,3,0)
  469.         local fram = Instance.new("ImageLabel",bbg)
  470.         fram.Image = Asset.."506843247"
  471.         fram.Size = UDim2.new(1,0,1,0)
  472.         fram.BackgroundColor3 = Color3.new(0,0,0)
  473.         fram.BackgroundTransparency = 1
  474.         fram.BorderSizePixel = 0
  475.         local box = Instance.new("TextLabel",fram)
  476.         box.Size = UDim2.new(1,0,1,0)
  477.         box.BackgroundColor = BrickColor.new("White")
  478.         box.TextColor3 = Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255))
  479.         box.TextStrokeTransparency = 0.5
  480.         box.Font = math.random(0,15)
  481.         box.Text = var
  482.         box.BackgroundTransparency = 1
  483.         box.BorderSizePixel = 0
  484.         box.Position = UDim2.new(0,0,0,0)
  485.         box.TextScaled = true
  486.         while true do
  487.         wait(0.01)
  488.         fram.Position=fram.Position-UDim2.new(0,0,0,1)
  489.         fram.ImageTransparency=fram.ImageTransparency+0.01
  490.         box.TextTransparency=box.TextTransparency+0.01
  491.         if --[[fram.ImageTransparency==1 and]] box.TextTransparency==1 then
  492.         bbg:Destroy()
  493.         end
  494.     end
  495. end
  496.  
  497. function KeyUsed(key)
  498.         if humanoid ~= nil then
  499.             if humanoid.Health > 0 then
  500.                 if string.byte(key) == 32 then
  501.                     jump = true
  502.                     AnimationStop()
  503.                     --sit = false
  504.                 end
  505.                 if string.byte(key) == 50 then
  506.                     AnimationStop()
  507.                     if sit == true then
  508.                         sit = false
  509.                     else
  510.                         sit = true
  511.                     end
  512.                 end
  513.                 if string.byte(key) == 48 then
  514.                     run = true
  515.                 end
  516.                 if W == false and A == false and S == false and D == false and jump == false and sit == false then
  517.                     if key == "Q" or key == "q" then
  518.                         AnimationStop()
  519.                         some_power = true
  520.                         M1:Play()
  521.                         if advan == false then
  522.                             if smode == 1 then
  523.                                 inform2("some_power")
  524.                             elseif smode == 2 then
  525.                                 inform2("front_page")
  526.                             elseif smode == 3 then
  527.                                 inform2("nova_fire")
  528.                             end
  529.                         if advan == true then
  530.                             if smode == 1 then
  531.                                 forcheck=482893067
  532.                                 inform2("Variable: some_power")
  533.                                 wait(0.2)
  534.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  535.                                 wait(0.2)
  536.                                 inform2("Original ID: "..forcheck)
  537.                             elseif smode == 2 then
  538.                                 forcheck=561274893
  539.                                 inform2("Variable: front_page")
  540.                                 wait(0.2)
  541.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  542.                                 wait(0.2)
  543.                                 inform2("Original ID: "..forcheck)
  544.                             elseif smode == 3 then
  545.                                 forcheck=168340433
  546.                                 inform2("Variable: nova_fire")
  547.                                 wait(0.2)
  548.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  549.                                 wait(0.2)
  550.                                 inform2("Original ID: "..forcheck)
  551.                             end
  552.                         end
  553.                     end
  554.                     end
  555.                     if key == "E" or key == "e" then
  556.                         AnimationStop()
  557.                         _2_much_power = true
  558.                         M2:Play()
  559.                         if advan == false then
  560.                             if smode == 1 then
  561.                                 inform2("_2_much_power")
  562.                             elseif smode == 2 then
  563.                                 inform2("flow")
  564.                             elseif smode == 3 then
  565.                                 inform2("harlem_dank")
  566.                             end
  567.                         if advan == true then
  568.                             if smode == 1 then
  569.                                 forcheck=408731259
  570.                                 inform2("Variable: _2_much_power")
  571.                                 wait(0.2)
  572.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  573.                                 wait(0.2)
  574.                                 inform2("Original ID: "..forcheck)
  575.                             elseif smode == 2 then
  576.                                 forcheck=273029844
  577.                                 inform2("Variable: flow")
  578.                                 wait(0.2)
  579.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  580.                                 wait(0.2)
  581.                                 inform2("Original ID: "..forcheck)
  582.                             elseif smode == 3 then
  583.                                 forcheck=265576262
  584.                                 inform2("Variable: harlem_dank")
  585.                                 wait(0.2)
  586.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  587.                                 wait(0.2)
  588.                                 inform2("Original ID: "..forcheck)
  589.                             end
  590.                         end
  591.                     end
  592.                     end
  593.                     if key == "R" or key == "r" then
  594.                         AnimationStop()
  595.                         unity = true
  596.                         M3:Play()
  597.                         if advan == false then
  598.                             if smode == 1 then
  599.                                 inform2("unity")
  600.                             elseif smode == 2 then
  601.                                 inform2("always_lying")
  602.                             elseif smode == 3 then
  603.                                 inform2("jawn")
  604.                             end
  605.                         if advan == true then
  606.                             if smode == 1 then
  607.                                 forcheck=257341751
  608.                                 inform2("Variable: unity")
  609.                                 wait(0.2)
  610.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  611.                                 wait(0.2)
  612.                                 inform2("Original ID: "..forcheck)
  613.                             elseif smode == 2 then
  614.                                 forcheck=421360692
  615.                                 inform2("Variable: always_lying")
  616.                                 wait(0.2)
  617.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  618.                                 wait(0.2)
  619.                                 inform2("Original ID: "..forcheck)
  620.                             elseif smode == 3 then
  621.                                 forcheck=142523507
  622.                                 inform2("Variable: jawn")
  623.                                 wait(0.2)
  624.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  625.                                 wait(0.2)
  626.                                 inform2("Original ID: "..forcheck)
  627.                             end
  628.                         end
  629.                     end
  630.                     end
  631.                     if key == "T" or key == "t" then
  632.                         AnimationStop()
  633.                         haha_no = true
  634.                         M4:Play()
  635.                             if advan == false then
  636.                             if smode == 1 then
  637.                                 inform2("haha_no")
  638.                             elseif smode == 2 then
  639.                                 inform2("ok_you_re_hearing_some_cancerous_stuff_i_give_up_now")
  640.                             elseif smode == 3 then
  641.                                 inform2("this_is_epic")
  642.                                 end
  643.                         if advan == true then
  644.                             if smode == 1 then
  645.                                 forcheck=258500169
  646.                                 inform2("Variable: haha_no")
  647.                                 wait(0.2)
  648.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  649.                                 wait(0.2)
  650.                                 inform2("Original ID: "..forcheck)
  651.                             elseif smode == 2 then
  652.                                 forcheck=416308003
  653.                                 inform2("Variable: ok_you_re_hearing_some_cancerous_stuff_i_give_up_now")
  654.                                 wait(0.2)
  655.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  656.                                 wait(0.2)
  657.                                 inform2("Original ID: "..forcheck)
  658.                             elseif smode == 3 then
  659.                                 forcheck=151021035
  660.                                 inform2("Variable: this_is_epic")
  661.                                 wait(0.2)
  662.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  663.                                 wait(0.2)
  664.                                 inform2("Original ID: "..forcheck)
  665.                             end
  666.                         end
  667.                     end
  668.                     end
  669.                     if key == "Y" or key == "y" then
  670.                         AnimationStop()
  671.                         spin_round = true
  672.                         M5:Play()
  673.                             if advan == false then
  674.                             if smode == 1 then
  675.                                 inform2("spin_round")
  676.                             elseif smode == 2 then
  677.                                 inform2("hard_one")
  678.                             elseif smode == 3 then
  679.                                 inform2("gta_loud")
  680.                                 end
  681.                         if advan == true then
  682.                             if smode == 1 then
  683.                                 forcheck=187013797
  684.                                 inform2("Variable: spin_round")
  685.                                 wait(0.2)
  686.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  687.                                 wait(0.2)
  688.                                 inform2("Original ID: "..forcheck)
  689.                             elseif smode == 2 then
  690.                                 forcheck=462957432
  691.                                 inform2("Variable: hard_one")
  692.                                 wait(0.2)
  693.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  694.                                 wait(0.2)
  695.                                 inform2("Original ID: "..forcheck)
  696.                             elseif smode == 3 then
  697.                                 forcheck=253539621
  698.                                 inform2("Variable: gta_loud")
  699.                                 wait(0.2)
  700.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  701.                                 wait(0.2)
  702.                                 inform2("Original ID: "..forcheck)
  703.                             end
  704.                         end
  705.                     end
  706.                     end
  707.                     if key == "U" or key == "u" then
  708.                         AnimationStop()
  709.                         still_not_that_fast = true
  710.                         M6:Play()
  711.                         if advan == false then
  712.                             if smode == 1 then
  713.                                 inform2("still_not_that_fast")
  714.                             elseif smode == 2 then
  715.                                 inform2("ok")
  716.                             elseif smode == 3 then
  717.                                 inform2("sanic_x")
  718.                                 end
  719.                         if advan == true then
  720.                             if smode == 1 then
  721.                                 forcheck=224705079
  722.                                 inform2("Variable: still_not_that_fast")
  723.                                 wait(0.2)
  724.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  725.                                 wait(0.2)
  726.                                 inform2("Original ID: "..forcheck)
  727.                             elseif smode == 2 then
  728.                                 forcheck=385741330
  729.                                 inform2("Variable: ok")
  730.                                 wait(0.2)
  731.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  732.                                 wait(0.2)
  733.                                 inform2("Original ID: "..forcheck)
  734.                             elseif smode == 3 then
  735.                                 forcheck=178752763
  736.                                 inform2("Variable: sanic_x")
  737.                                 wait(0.2)
  738.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  739.                                 wait(0.2)
  740.                                 inform2("Original ID: "..forcheck)
  741.                             end
  742.                         end
  743.                     end
  744.                     end
  745.                     if key == "F" or key == "f" then
  746.                         AnimationStop()
  747.                         tetris_remix = true
  748.                         M7:Play()
  749.                         if barrelbrick == nil and tetris_remix == true then
  750.                             barrelbrick = P(2,2,1,'Black',0,false,false)
  751.                             a=fm(barrelbrick,0,0.5,0.5,0.5,0) a.VertexColor = Vector3.new(1,1,1)
  752.                             We(barrelbrick,char.Torso,0,10,0,90,90,90)
  753.                         end
  754.                             if advan == false then
  755.                             if smode == 1 then
  756.                                 inform2("tetris_remix")
  757.                             elseif smode == 2 then
  758.                                 inform2("it_s_low")
  759.                             elseif smode == 3 then
  760.                                 inform2("mlg_dubbs")
  761.                                 end
  762.                         if advan == true then
  763.                             if smode == 1 then
  764.                                 forcheck=200624713
  765.                                 inform2("Variable: tetris_remix")
  766.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  767.                                 inform2("Original ID: "..forcheck)
  768.                             elseif smode == 2 then
  769.                                 forcheck=334046170
  770.                                 inform2("Variable: it_s_low")
  771.                                 wait(0.2)
  772.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  773.                                 wait(0.2)
  774.                                 inform2("Original ID: "..forcheck)
  775.                             elseif smode == 3 then
  776.                                 forcheck=340617496
  777.                                 inform2("Variable: mlg_dubbs")
  778.                                 wait(0.2)
  779.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  780.                                 wait(0.2)
  781.                                 inform2("Original ID: "..forcheck)
  782.                             end
  783.                         end
  784.                     end
  785.                     end
  786.                     if key == "P" or key == "p" then
  787.                         AnimationStop()
  788.                         dat_boi = true
  789.                         M8:Play()
  790.                         if saxtool == nil and dat_boi == true then
  791.                             saxtool = P(1,2,2,'Black',0,false,false)
  792.                             a=fm(saxtool,44410178,1.5,1.5,1.5,44410320) a.VertexColor = Vector3.new(1,1,1)
  793.                             b=We(saxtool,char:FindFirstChild("Left Arm"),0,-1,0,0,0,0)
  794.                             b.C1 = CFrame.new(0.5, -0.9, -0.3) * CFrame.Angles(math.pi/1.5, -math.pi/2, -math.pi/8)
  795.                         end
  796.                             if advan == false then
  797.                             if smode == 1 then
  798.                                 inform2("dat_boi")
  799.                             elseif smode == 2 then
  800.                                 inform2("ayyyyyyyyyyyyyyyyyyyyyyyy_lmao")
  801.                             elseif smode == 3 then
  802.                                 inform2("_2204355")
  803.                                 end
  804.                         if advan == true then
  805.                             if smode == 1 then
  806.                                 forcheck=410806544
  807.                                 inform2("Variable: dat_boi")
  808.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  809.                                 inform2("Original ID: "..forcheck)
  810.                             elseif smode == 2 then
  811.                                 forcheck=400663465
  812.                                 inform2("Variable: ayyyyyyyyyyyyyyyyyyyyyyyy_lmao")
  813.                                 wait(0.2)
  814.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  815.                                 wait(0.2)
  816.                                 inform2("Original ID: "..forcheck)
  817.                             elseif smode == 3 then
  818.                                 forcheck=142355221
  819.                                 inform2("Variable: _2204355")
  820.                                 wait(0.2)
  821.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  822.                                 wait(0.2)
  823.                                 inform2("Original ID: "..forcheck)
  824.                             end
  825.                         end
  826.                     end
  827.                     end
  828.                     if key == "G" or key == "g" then
  829.                         AnimationStop()
  830.                         memes = true
  831.                         M9:Play()
  832.                             if advan == false then
  833.                             if smode == 1 then
  834.                                 inform2("memes")
  835.                             elseif smode == 2 then
  836.                                 inform2("TGG")
  837.                             elseif smode == 3 then
  838.                                 inform2("mlg_style")
  839.                                 end
  840.                         if advan == true then
  841.                             if smode == 1 then
  842.                                 forcheck=242178814
  843.                                 inform2("Variable: memes")
  844.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  845.                                 inform2("Original ID: "..forcheck)
  846.                             elseif smode == 2 then
  847.                                 forcheck=297802798
  848.                                 inform2("Variable: TGG")
  849.                                 wait(0.2)
  850.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  851.                                 wait(0.2)
  852.                                 inform2("Original ID: "..forcheck)
  853.                             elseif smode == 3 then
  854.                                 forcheck=362846090
  855.                                 inform2("Variable: mlg_style")
  856.                                 wait(0.2)
  857.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  858.                                 wait(0.2)
  859.                                 inform2("Original ID: "..forcheck)
  860.                             end
  861.                         end
  862.                     end
  863.                     end
  864.                     if key == "H" or key == "h" then
  865.                         AnimationStop()
  866.                         scary_monsters_nice_sprites_remix = true
  867.                         M10:Play()
  868.                             if advan == false then
  869.                             if smode == 1 then
  870.                                 inform2("scary_monsters_nice_sprites_remix")
  871.                             elseif smode == 2 then
  872.                                 inform2("yeah_bass")
  873.                             elseif smode == 3 then
  874.                                 inform2("paper_mario")
  875.                                 end
  876.                         if advan == true then
  877.                             if smode == 1 then
  878.                                 forcheck=142375403
  879.                                 inform2("Variable: scary_monsters_nice_sprites_remix")
  880.                                 wait(0.2)
  881.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  882.                                 wait(0.2)
  883.                                 inform2("Original ID: "..forcheck)
  884.                             elseif smode == 2 then
  885.                                 forcheck=410005698
  886.                                 inform2("Variable: yeah_bass")
  887.                                 wait(0.2)
  888.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  889.                                 wait(0.2)
  890.                                 inform2("Original ID: "..forcheck)
  891.                             elseif smode == 3 then
  892.                                 forcheck=145369820
  893.                                 inform2("Variable: paper_mario")
  894.                                 wait(0.2)
  895.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  896.                                 wait(0.2)
  897.                                 inform2("Original ID: "..forcheck)
  898.                             end
  899.                         end
  900.                     end
  901.                     end
  902.                     if key == "J" or key == "j" then
  903.                         AnimationStop()
  904.                         rus = true
  905.                         M11:Play()
  906.                             if advan == false then
  907.                             if smode == 1 then
  908.                                 inform2("rus")
  909.                             elseif smode == 2 then
  910.                                 inform2("we_rise")
  911.                             elseif smode == 3 then
  912.                                 inform2("otis")
  913.                                 end
  914.                         if advan == true then
  915.                             if smode == 1 then
  916.                                 forcheck=542441126
  917.                                 inform2("Variable: rus")
  918.                                 wait(0.2)
  919.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  920.                                 wait(0.2)
  921.                                 inform2("Original ID: "..forcheck)
  922.                             elseif smode == 2 then
  923.                                 forcheck=427801633
  924.                                 inform2("Variable: we_rise")
  925.                                 wait(0.2)
  926.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  927.                                 wait(0.2)
  928.                                 inform2("Original ID: "..forcheck)
  929.                             elseif smode == 3 then
  930.                                 forcheck=142308159
  931.                                 inform2("Variable: otis")
  932.                                 wait(0.2)
  933.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  934.                                 wait(0.2)
  935.                                 inform2("Original ID: "..forcheck)
  936.                             end
  937.                         end
  938.                     end
  939.                     end
  940.                     if key == "K" or key == "k" then
  941.                         AnimationStop()
  942.                         it_s_already_that_old = true
  943.                         M12:Play()
  944.                             if advan == false then
  945.                             if smode == 1 then
  946.                                 inform2("it_s_already_that_old")
  947.                             elseif smode == 2 then
  948.                                 inform2("yeah")
  949.                             elseif smode == 3 then
  950.                                 inform2("LJN")
  951.                                 end
  952.                         if advan == true then
  953.                             if smode == 1 then
  954.                                 forcheck=501548847
  955.                                 inform2("Variable: it_s_already_that_old")
  956.                                 wait(0.2)
  957.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  958.                                 wait(0.2)
  959.                                 inform2("Original ID: "..forcheck)
  960.                             elseif smode == 2 then
  961.                                 forcheck=277253359
  962.                                 inform2("Variable: yeah")
  963.                                 wait(0.2)
  964.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  965.                                 wait(0.2)
  966.                                 inform2("Original ID: "..forcheck)
  967.                             elseif smode == 3 then
  968.                                 forcheck=167373003
  969.                                 inform2("Variable: LJN")
  970.                                 wait(0.2)
  971.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  972.                                 wait(0.2)
  973.                                 inform2("Original ID: "..forcheck)
  974.                             end
  975.                         end
  976.                     end
  977.                     end
  978.                     if key == "L" or key == "l" then
  979.                         AnimationStop()
  980.                         pootis_avi = true
  981.                         M13:Play()
  982.                             if advan == false then
  983.                             if smode == 1 then
  984.                                 inform2("pootis_avi")
  985.                             elseif smode == 2 then
  986.                                 inform2("it_s_metal")
  987.                             elseif smode == 3 then
  988.                                 inform2("ITS_NO_USE")
  989.                                 end
  990.                         if advan == true then
  991.                             if smode == 1 then
  992.                                 forcheck=336581561
  993.                                 inform2("Variable: pootis_avi")
  994.                                 wait(0.2)
  995.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  996.                                 wait(0.2)
  997.                                 inform2("Original ID: "..forcheck)
  998.                             elseif smode == 2 then
  999.                                 forcheck=184740384
  1000.                                 inform2("Variable: it_s_metal")
  1001.                                 wait(0.2)
  1002.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1003.                                 wait(0.2)
  1004.                                 inform2("Original ID: "..forcheck)
  1005.                             elseif smode == 3 then
  1006.                                 forcheck=130844716
  1007.                                 inform2("Variable: ITS_NO_USE")
  1008.                                 wait(0.2)
  1009.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1010.                                 wait(0.2)
  1011.                                 inform2("Original ID: "..forcheck)
  1012.                             end
  1013.                         end
  1014.                     end
  1015.                     end
  1016.                     if key == "Z" or key == "z" then
  1017.                         AnimationStop()
  1018.                         buelah_mp3 = true
  1019.                         M14:Play()
  1020.                             if advan == false then
  1021.                             if smode == 1 then
  1022.                                 inform2("buelah_mp3")
  1023.                             elseif smode == 2 then
  1024.                                 inform2("GOOD_JOB")
  1025.                             elseif smode == 3 then
  1026.                                 inform2("spm")
  1027.                                 end
  1028.                         if advan == true then
  1029.                             if smode == 1 then
  1030.                                 forcheck=214285554
  1031.                                 inform2("Variable: buelah_mp3")
  1032.                                 wait(0.2)
  1033.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1034.                                 wait(0.2)
  1035.                                 inform2("Original ID: "..forcheck)
  1036.                             elseif smode == 2 then
  1037.                                 forcheck=225074231
  1038.                                 inform2("Variable: GOOD_JOB")
  1039.                                 wait(0.2)
  1040.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1041.                                 wait(0.2)
  1042.                                 inform2("Original ID: "..forcheck)
  1043.                             elseif smode == 3 then
  1044.                                 forcheck=202234516
  1045.                                 inform2("Variable: spm")
  1046.                                 wait(0.2)
  1047.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1048.                                 wait(0.2)
  1049.                                 inform2("Original ID: "..forcheck)
  1050.                             end
  1051.                         end
  1052.                     end
  1053.                     end
  1054.                     if key == "X" or key == "x" then
  1055.                         AnimationStop()
  1056.                         antivirisis = true
  1057.                         M15:Play()
  1058.                         if sandstorm == nil and antivirisis == true then
  1059.                             sandstorm = P(1,1,1,'Black',0,false,false)
  1060.                             sandstorm.Transparency = 1
  1061.                             a=Instance.new("Smoke",sandstorm)
  1062.                             a.Color = Color3.new(255/255,255/255,175/255)
  1063.                             a.Size = 0.4
  1064.                             a.RiseVelocity = 3
  1065.                             a.Opacity = 0.75
  1066.                             b=We(sandstorm,char:FindFirstChild("Torso"),0,0,0,0,0,0)
  1067.                             b.C1 = CFrame.new(0, -2, 0)
  1068.                         end
  1069.                             if advan == false then
  1070.                             if smode == 1 then
  1071.                                 inform2("antivirisis")
  1072.                             elseif smode == 2 then
  1073.                                 inform2("hardness")
  1074.                             elseif smode == 3 then
  1075.                                 inform2("stylo")
  1076.                                 end
  1077.                         if advan == true then
  1078.                             if smode == 1 then
  1079.                                 forcheck=278068026
  1080.                                 inform2("Variable: antivirisis")
  1081.                                 wait(0.2)
  1082.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1083.                                 wait(0.2)
  1084.                                 inform2("Original ID: "..forcheck)
  1085.                             elseif smode == 2 then
  1086.                                 forcheck=265479911
  1087.                                 inform2("Variable: hardness")
  1088.                                 wait(0.2)
  1089.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1090.                                 wait(0.2)
  1091.                                 inform2("Original ID: "..forcheck)
  1092.                             elseif smode == 3 then
  1093.                                 forcheck=144940679
  1094.                                 inform2("Variable: stylo")
  1095.                                 wait(0.2)
  1096.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1097.                                 wait(0.2)
  1098.                                 inform2("Original ID: "..forcheck)
  1099.                             end
  1100.                         end
  1101.                     end
  1102.                     end
  1103.                     if key == "C" or key == "c" then
  1104.                         AnimationStop()
  1105.                         look_at_this_dude = true
  1106.                         M16:Play()
  1107.                             if advan == false then
  1108.                             if smode == 1 then
  1109.                                 inform2("look_at_this_dude")
  1110.                             elseif smode == 2 then
  1111.                                 inform2("hard_bass")
  1112.                             elseif smode == 3 then
  1113.                                 inform2("nedm")
  1114.                                 end
  1115.                         if advan == true then
  1116.                             if smode == 1 then
  1117.                                 forcheck=424610918
  1118.                                 inform2("Variable: look_at_this_dude")
  1119.                                 wait(0.2)
  1120.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1121.                                 wait(0.2)
  1122.                                 inform2("Original ID: "..forcheck)
  1123.                             elseif smode == 2 then
  1124.                                 forcheck=324499479
  1125.                                 inform2("Variable: hard_bass")
  1126.                                 wait(0.2)
  1127.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1128.                                 wait(0.2)
  1129.                                 inform2("Original ID: "..forcheck)
  1130.                             elseif smode == 3 then
  1131.                                 forcheck=138811227
  1132.                                 inform2("Variable: nedm")
  1133.                                 wait(0.2)
  1134.                                 inform2("Original name: "..game:GetService("MarketplaceService"):GetProductInfo(forcheck,Enum.InfoType.Asset).Name)
  1135.                                 wait(0.2)
  1136.                                 inform2("Original ID: "..forcheck)
  1137.                             end
  1138.                         end
  1139.                     end
  1140.                     end
  1141.                     if key == "V" or key == "v" then
  1142.                         smode = 1
  1143.                         M1.SoundId=Asset.."482893067"
  1144.                         M2.SoundId=Asset.."408731259"
  1145.                         M3.SoundId=Asset.."257341751"
  1146.                         M4.SoundId=Asset.."258500169"
  1147.                         M5.SoundId=Asset.."187013797"
  1148.                         M6.SoundId=Asset.."224705079"
  1149.                         M7.SoundId=Asset.."200624713"
  1150.                         M8.SoundId=Asset.."410806544"
  1151.                         M9.SoundId=Asset.."242178814"
  1152.                         M10.SoundId=Asset.."142375403"
  1153.                         M11.SoundId=Asset.."542441126"
  1154.                         M12.SoundId=Asset.."501548847"
  1155.                         M13.SoundId=Asset.."336581561"
  1156.                         M14.SoundId=Asset.."214285554"
  1157.                         M15.SoundId=Asset.."278068026"
  1158.                         M16.SoundId=Asset.."424610918"
  1159.                         inform2("Smode: 1 (Original Music)")
  1160.                     end
  1161.                     if key == "B" or key == "b" then
  1162.                         smode = 2
  1163.                         M1.SoundId=Asset.."561274893"
  1164.                         M2.SoundId=Asset.."273029844"
  1165.                         M3.SoundId=Asset.."421360692"
  1166.                         M4.SoundId=Asset.."416308003"
  1167.                         M5.SoundId=Asset.."462957432"
  1168.                         M6.SoundId=Asset.."385741330"
  1169.                         M7.SoundId=Asset.."334046170"
  1170.                         M8.SoundId=Asset.."400663465"
  1171.                         M9.SoundId=Asset.."297802798"
  1172.                         M10.SoundId=Asset.."410005698"
  1173.                         M11.SoundId=Asset.."427801633"
  1174.                         M12.SoundId=Asset.."277253359"
  1175.                         M13.SoundId=Asset.."184740384"
  1176.                         M14.SoundId=Asset.."225074231"
  1177.                         M15.SoundId=Asset.."265479911"
  1178.                         M16.SoundId=Asset.."324499479"
  1179.                         inform2("Smode: 2 (Other Music)")
  1180.                     end
  1181.                     if key == "N" or key == "n" then
  1182.                         smode = 3
  1183.                         M1.SoundId=Asset.."168340433"
  1184.                         M2.SoundId=Asset.."265576262"
  1185.                         M3.SoundId=Asset.."142523507"
  1186.                         M4.SoundId=Asset.."151021035"
  1187.                         M5.SoundId=Asset.."253539621"
  1188.                         M6.SoundId=Asset.."178752763"
  1189.                         M7.SoundId=Asset.."340617496"
  1190.                         M8.SoundId=Asset.."142355221"
  1191.                         M9.SoundId=Asset.."362846090"
  1192.                         M10.SoundId=Asset.."145369820"
  1193.                         M11.SoundId=Asset.."142308159"
  1194.                         M12.SoundId=Asset.."167373003"
  1195.                         M13.SoundId=Asset.."130844716"
  1196.                         M14.SoundId=Asset.."202234516"
  1197.                         M15.SoundId=Asset.."144940679"
  1198.                         M16.SoundId=Asset.."138811227"
  1199.                         inform2("Smode: 3 (Music From the 1st Edit)")
  1200.                     end
  1201.                     if key == "M" or key == "m" then
  1202.                         if advan == false then
  1203.                         advan = true
  1204.                         inform2("Advanced details are on")
  1205.                         elseif advan == true then
  1206.                         advan = false
  1207.                         inform2("Advanced details are off")
  1208.                         end
  1209.                         end
  1210.                 end
  1211.             end
  1212.     end
  1213. end
  1214.  
  1215. Generate(Player)
  1216.  
  1217. game:service'RunService'.Stepped:connect(function()
  1218.     count = (count % 100) + countspeed
  1219.     angle = math.pi * math.sin(math.pi*2/100*count)
  1220.     countspeed = 1
  1221.    
  1222.     state = humanoid:GetState()
  1223.     if state ~= Enum.HumanoidStateType.Freefall then
  1224.         jump = false
  1225.     else
  1226.         jump = true
  1227.         sit = false
  1228.         AnimationStop()
  1229.     end
  1230.    
  1231.     local mesh1anan = Instance.new("SpecialMesh")
  1232.     mesh1anan.MeshType = Enum.MeshType.FileMesh
  1233.     mesh1anan.Scale = Vector3.new(1,1,1)
  1234.     mesh1anan.MeshId = "rbxassetid://431000837"
  1235.     mesh1anan.TextureId = "rbxassetid://431000842"
  1236.     if look_at_this_dude == true then
  1237.         if char ~= nil then
  1238.             local locationanan = char:GetModelCFrame()
  1239.             local tacoa = Instance.new("Part")
  1240.             tacoa.CanCollide = false
  1241.             tacoa.RotVelocity = Vector3.new(math.random()*math.pi,math.random()*math.pi,math.random()*math.pi)
  1242.             local meshanananan = mesh1anan:clone()
  1243.             meshanananan.Parent = tacoa
  1244.             meshanananan.Scale = Vector3.new(1,1,1)
  1245.             tacoa.CFrame = locationanan * CFrame.new(math.random()*500 - 250,math.random(100,200),math.random()*500 - 250)
  1246.             tacoa.Parent = workspace
  1247.             game:GetService("Debris"):AddItem(tacoa,4)
  1248.         end
  1249.     end
  1250.    
  1251.    
  1252.    
  1253.    
  1254.     if some_power == false then
  1255.         M1:Stop()
  1256.     end
  1257.     if _2_much_power == false then 
  1258.         M2:Stop()
  1259.     end
  1260.     if unity == false then 
  1261.         M3:Stop()
  1262.     end
  1263.     if haha_no == false then   
  1264.         M4:Stop()
  1265.     end
  1266.     if spin_round == false then
  1267.         M5:Stop()
  1268.     end
  1269.     if still_not_that_fast == false then   
  1270.         M6:Stop()
  1271.     end
  1272.     if tetris_remix == false then  
  1273.         M7:Stop()
  1274.     end
  1275.     if dat_boi == false then   
  1276.         M8:Stop()
  1277.     end
  1278.     if memes == false then 
  1279.         M9:Stop()
  1280.     end
  1281.     if scary_monsters_nice_sprites_remix == false then 
  1282.         M10:Stop()
  1283.     end
  1284.     if rus == false then   
  1285.         M11:Stop()
  1286.     end
  1287.     if it_s_already_that_old == false then
  1288.         M12:Stop()
  1289.     end
  1290.     if pootis_avi == false then
  1291.         M13:Stop()
  1292.     end
  1293.     if buelah_mp3 == false then
  1294.         M14:Stop() 
  1295.     end
  1296.     if antivirisis == false then
  1297.         M15:Stop()
  1298.     end
  1299.     if look_at_this_dude == false then
  1300.         M16:Stop()
  1301.     end
  1302.    
  1303.     if run == true and sit == false then
  1304.         humanoid.WalkSpeed = 25
  1305.     elseif sit == true then
  1306.         humanoid.WalkSpeed = 0
  1307.     else
  1308.         humanoid.WalkSpeed = 16
  1309.     end
  1310.    
  1311.     if global_wait == 380 then global_wait = 0 end
  1312.    
  1313.     if (W == false or A == false or S == false or D == false) and jump == false and sit == false then
  1314.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/75)
  1315.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/75)
  1316.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/75)
  1317.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/75)
  1318.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/75, math.pi, 0)
  1319.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1320.     end
  1321.    
  1322.    
  1323.     if (W == false or A == false or S == false or D == false) and jump == false and sit == true then
  1324.         local ray = Ray.new(torso.Position, Vector3.new(0, -3, 0))
  1325.         local hitz,enz = workspace:FindPartOnRay(ray, char)
  1326.         if hitz then
  1327.             if rootpart:FindFirstChild("Weld") == nil then
  1328.                 miniweld = Instance.new("Weld", rootpart)
  1329.                 miniweld.C0 = hitz.CFrame:toObjectSpace(rootpart.CFrame)
  1330.                 miniweld.Part0 = hitz
  1331.                 miniweld.Part1 = rootpart
  1332.                 humanoid.PlatformStand = true
  1333.             end
  1334.         end
  1335.     else
  1336.         if rootpart:FindFirstChild("Weld") ~= nil then
  1337.             rootpart:FindFirstChild("Weld"):Destroy()
  1338.             humanoid.PlatformStand = false
  1339.         end
  1340.     end
  1341.    
  1342.     if (W == false or A == false or S == false or D == false) and jump == false and sit == true then
  1343.         ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - math.pi/15)
  1344.         rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 + math.pi/15)
  1345.         lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + math.pi/8, 0, math.pi/2 - math.pi/15)
  1346.         rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + math.pi/8, 0, -math.pi/2 + math.pi/15)
  1347.         neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + math.pi/15, math.pi, 0)
  1348.         rj.C0 = CFrame.new(0, -2, 0) * CFrame.Angles(math.pi/2 + math.pi/15, math.pi, 0)
  1349.     end
  1350.    
  1351.     if jump == true and sit == false then
  1352.         countspeed = 2
  1353.         ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi + angle/12)
  1354.         rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi + angle/12)
  1355.         lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/12)
  1356.         rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/12)
  1357.         neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/25, math.pi, 0)
  1358.         rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2+ angle/50, math.pi, 0)
  1359.     end
  1360.    
  1361.     if (W == true or A == true or S == true or D == true) and jump == false and sit == false then
  1362.         if run == true then
  1363.             countspeed = 4
  1364.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/3)
  1365.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/3)
  1366.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/5)
  1367.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/5)
  1368.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/20, math.pi, 0)
  1369.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2 + angle/40, math.pi, 0)
  1370.         else
  1371.             countspeed = 2
  1372.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/4)
  1373.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 - angle/4)
  1374.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/6)
  1375.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/6)
  1376.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/25, math.pi, 0)
  1377.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2+ angle/50, math.pi, 0)
  1378.         end
  1379.     end
  1380.  
  1381.     if W == false and A == false and S == false and D == false and jump == false and sit == false then
  1382.         if unity == true and jump == false and sit == false then
  1383.             countspeed = 2
  1384.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(angle/5, 0, angle/4)
  1385.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(angle/5, 0, -angle/4)
  1386.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(angle/10, 0, angle/5)-- * CFrame.Angles(angle*0.5, 0, -math.abs(angle*0.15))
  1387.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(angle/10, 0, angle/5)-- * CFrame.Angles(-angle*0.5, 0, math.abs(angle*0.15))
  1388.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/5, math.pi, 0)
  1389.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2 + angle/5, math.pi, 0)
  1390.         elseif _2_much_power == true and jump == false and sit == false then
  1391.             countspeed = 4
  1392.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(angle/15, 0, angle/15)
  1393.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(angle/15, 0, angle/15)
  1394.             ls.C1 = CFrame.new(0.25,0.5 + 1 * angle/10,0.5) * CFrame.Angles(math.pi  + angle/10, 0, 0 + angle/10)
  1395.             rs.C1 = CFrame.new(-0.25,0.5 + 1 * angle/10,0.5) * CFrame.Angles(math.pi  + angle/10, 0, 0  + angle/10)
  1396.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/10, math.pi, 0)
  1397.             rj.C0 = CFrame.new(0, 0.5 + angle/5, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1398.         elseif some_power == true and jump == false and sit == false then
  1399.             countspeed = 2
  1400.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0 + angle/8, 0, math.pi/12 + angle/12)
  1401.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0 + angle/8, 0, -math.pi/12 - angle/12)
  1402.             lh.C1 = CFrame.new(0.35,0.7,0.5) * CFrame.Angles(0 + angle/10, 0, -math.pi/8)
  1403.             rh.C1 = CFrame.new(-0.35,0.7,0.5) * CFrame.Angles(0 + angle/10, 0, math.pi/8)
  1404.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/15, math.pi, 0)
  1405.             rj.C0 = CFrame.new(angle/4, -0.3 + angle/20, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1406.         elseif haha_no == true and jump == false and sit == false then
  1407.             countspeed = 4
  1408.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(math.pi/4, math.pi/8 + angle/8, math.pi/4 + angle/8)
  1409.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(math.pi/4, -math.pi/8 + angle/8, -math.pi/4 + angle/8)
  1410.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/10, 0, 0  + angle/10)
  1411.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/10, 0, 0  + angle/10)
  1412.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/15, math.pi + angle/15, 0 + angle/15)
  1413.             rj.C0 = CFrame.new(0, 0 + angle/20, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1414.         elseif spin_round == true and jump == false and sit == false then
  1415.             global_wait = (global_wait % 360) + 4
  1416.             countspeed = 4
  1417.             ls.C1 = CFrame.new(0,1,0) * CFrame.Angles(math.pi/2, 0 + angle/10, 0 + angle/10)
  1418.             rs.C1 = CFrame.new(0,1,0) * CFrame.Angles(math.pi/2, 0 - angle/10, 0 + angle/10)
  1419.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/10, 0 + angle/10, 0  + angle/10)
  1420.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/10, 0 + angle/10, 0  + angle/10)
  1421.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1422.             rj.C0 = CFrame.new(0 + angle/25, 0, 0 - angle/25) * CFrame.Angles(math.pi/2, math.pi, math.rad(global_wait*4))
  1423.         elseif still_not_that_fast == true and jump == false and sit == false then
  1424.             countspeed = 2
  1425.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi/2 + angle/15)
  1426.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, -math.pi/2 + angle/15)
  1427.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(math.pi/60 - angle/45, 0, 0 + angle/15)
  1428.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(math.pi/60 + angle/45, 0, 0 + angle/15)
  1429.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/15, math.pi + angle/10, 0)
  1430.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2 + angle/50 , math.pi + angle/50, 0 + angle/50)
  1431.         elseif tetris_remix == true and jump == false and sit == false then
  1432.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi)
  1433.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi)
  1434.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0)
  1435.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0)
  1436.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1437.             rj.C0 = CFrame.new(0 + angle, -1.8, 0) * CFrame.Angles(0, math.pi, 0 + angle)
  1438.         elseif dat_boi == true and jump == false and sit == false then
  1439.             countspeed = 2
  1440.             ls.C1 = CFrame.new(0,0.75,-0.25) * CFrame.Angles(-math.pi/5, 0, math.pi/2 - math.abs(angle/30))
  1441.             rs.C1 = CFrame.new(0,0.75,-0.25) * CFrame.Angles(-math.pi/5, 0, -math.pi/2 + math.abs(angle/30))
  1442.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 - math.abs(angle/30))
  1443.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + math.abs(angle/30))
  1444.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1445.             rj.C0 = CFrame.new(0, -math.abs(angle*0.05), math.abs(angle*0.025)) * CFrame.Angles(math.pi/2 + math.abs(angle/20), math.pi, 0)
  1446.         elseif memes == true and jump == false and sit == false then
  1447.             countspeed = 3
  1448.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi/2 - angle/1.5)
  1449.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, -math.pi/2 + angle/1.5)
  1450.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 - angle/16)
  1451.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 + angle/16)
  1452.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2  + angle/12, math.pi, 0)
  1453.             rj.C0 = CFrame.new(0, 0 + angle / 35, 0) * CFrame.Angles(math.pi/2 + angle/25, math.pi, 0)
  1454.         elseif scary_monsters_nice_sprites_remix == true and jump == false and sit == false then
  1455.             countspeed = 2.5
  1456.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(angle/16, angle/16,math.pi/3.5 + angle/8)
  1457.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(angle/16, -angle/16,-math.pi/1.5 + -angle/8)
  1458.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, angle/16, angle/16)
  1459.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, angle/16, angle/16)
  1460.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1461.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2-angle/16, math.pi, 0)
  1462.         elseif rus == true and jump == false and sit == false then
  1463.             countspeed = 2
  1464.             ls.C1 = CFrame.new(0,0.75,-0.35) * CFrame.Angles(math.pi/8, 0, math.pi/2 + angle/3.5)
  1465.             rs.C1 = CFrame.new(0,0.75,-0.35) * CFrame.Angles(math.pi/8, 0, -math.pi/2 + angle/3.5)
  1466.             lh.C1 = CFrame.new(0 + angle/50,1,0.5) * CFrame.Angles(0, 0 + angle/35, 0 + angle/15)
  1467.             rh.C1 = CFrame.new(0 + angle/50,1,0.5) * CFrame.Angles(0, 0 + angle/35, 0 + angle/15)
  1468.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/15, math.pi, 0)
  1469.             rj.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.pi/2 - angle/35, math.pi - angle/35, 0)
  1470.         elseif it_s_already_that_old == true and jump == false and sit == false then
  1471.             countspeed = 4
  1472.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, math.pi/2+angle/2)
  1473.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, -math.pi/2+angle/2)
  1474.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0+angle/32, 0, 0+angle/32)
  1475.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0+angle/32, 0, 0-angle/32)
  1476.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1477.             rj.C0 = CFrame.new(0, 0 - angle/50, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1478.         elseif pootis_avi == true and jump == false and sit == false then
  1479.             countspeed = 4
  1480.             ls.C1 = CFrame.new(0,0.75,-0.15) * CFrame.Angles(-math.pi/4, 0, (math.pi/2 + angle/14) - math.pi/20)
  1481.             rs.C1 = CFrame.new(0,0.75,-0.15) * CFrame.Angles(-math.pi/4, 0, (-math.pi/2 - angle/14) + math.pi/20)
  1482.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/16, 0, 0)
  1483.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0 + angle/16, 0, 0)
  1484.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 + angle/20, math.pi, 0)
  1485.             rj.C0 = CFrame.new(0, 0 + angle/40, 0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1486.         elseif buelah_mp3 == true and jump == false and sit == false then
  1487.             countspeed = 2
  1488.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(math.pi/12, 0, math.pi/4 + angle/4)
  1489.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(math.pi/12, 0, -math.pi/4 + angle/4)
  1490.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(math.pi/24, 0, 0 + angle/4)
  1491.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(math.pi/24, 0, 0 + angle/4)
  1492.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 - angle/8, math.pi, 0)
  1493.             rj.C0 = CFrame.new(0, 0 + angle/48, 0) * CFrame.Angles(math.pi/2 + angle/24, math.pi, 0)
  1494.         elseif antivirisis == true and jump == false and sit == false then
  1495.             countspeed = 3
  1496.             ls.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 + angle/1.5)
  1497.             rs.C1 = CFrame.new(0,0.5,-0.5) * CFrame.Angles(0, 0, 0 + angle/3)
  1498.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 - angle/3)
  1499.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, 0 - angle/1.5)
  1500.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2, math.pi, 0)
  1501.             rj.C0 = CFrame.new(0, 0+ angle/45, 0) * CFrame.Angles(math.pi/2 - angle/6, math.pi, 0)
  1502.         elseif look_at_this_dude == true and jump == false and sit == false then
  1503.             countspeed = 4
  1504.             global_wait = (global_wait % 360) + 4
  1505.             ls.C1 = CFrame.new(0,1,-0.25) * CFrame.Angles(math.pi/6 + angle/12, 0, math.pi)
  1506.             rs.C1 = CFrame.new(0,1,-0.25) * CFrame.Angles(math.pi/6 + angle/12, 0, math.pi)
  1507.             lh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, math.pi/8 + angle/16)
  1508.             rh.C1 = CFrame.new(0,1,0.5) * CFrame.Angles(0, 0, math.pi/8 + angle/16)
  1509.             neck.C1 = CFrame.new(0,-0.5,0) * CFrame.Angles(math.pi/2 - math.pi/8 + angle/16, math.pi, 0)
  1510.             rj.C0 = CFrame.new(0, 0.25 + angle/12, 0) * CFrame.Angles(math.pi/2, math.pi, math.rad(global_wait*4))
  1511.         end
  1512.     end
  1513. end)
  1514. wait(0.2)
  1515. inform2(_VERSION.." is cool!!!")
  1516.  
  1517. while true do
  1518. wait(2)
  1519. WorkPlayer.FalseHead.NametagGUI.ImageLabel.TextLabel.TextColor3 = Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255))
  1520. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement