Lover712

Untitled

Feb 18th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 90.17 KB | None | 0 0
  1. local function CreateInstance(cls,props)
  2. local inst = Instance.new(cls)
  3. for i,v in pairs(props) do
  4. inst[i] = v
  5. end
  6. return inst
  7. end
  8.  
  9. local players = game:GetService"Players"
  10. local localp = players.LocalPlayer
  11. local mouse = localp:GetMouse()
  12. local uis = game:GetService"UserInputService"
  13. local cam = workspace.CurrentCamera
  14.  
  15. --config
  16. local cheats = {
  17. aimbot = false;
  18. aimfov = 150;
  19. killall = false;
  20. oneshot = false;
  21. wallbang = false;
  22. antiaim = "Off";
  23.  
  24. moola = true;
  25.  
  26. loadout = false;
  27. primary = "MP9";
  28. secondary = "USP";
  29.  
  30. quickdefuse = false;
  31. deftype = "Near";
  32. fastplant = false;
  33. planttype = "Normal";
  34.  
  35. jointeam = "Spectator";
  36. chatspam = false;
  37.  
  38. thirdp = false;
  39. thirdpkey = Enum.KeyCode.KeypadOne;
  40. fovchanger = false;
  41.  
  42. esp = false;
  43. esptarget = "Enemy";
  44. bomb = false;
  45. weapons = false;
  46. drawfov = false;
  47.  
  48. esp_enemycolor = Color3.fromRGB(220,80,40);
  49. esp_teamcolor = Color3.fromRGB(40, 220, 220);
  50. esp_bombcolor = Color3.fromRGB(220,60,210);
  51. esp_bombcarriercolor = Color3.fromRGB(220,210,40);
  52. esp_weaponcolor = Color3.fromRGB(200,200,200);
  53. esp_itemtextcolor = Color3.fromRGB(220,60,210);
  54.  
  55. weptype = "Pistols";
  56. }
  57.  
  58. local pistols = {"USP", "P2000", "Glock", "DualBerettas", "P250", "FiveSeven", "Tec9", "CZ", "DesertEagle" ,"R8"}
  59. local semis = {"MP9", "MAC10", "MP7", "UMP", "P90", "Bizon"}
  60. local heavies = {"Nova", "XM", "MAG7", "SawedOff", "M249", "Negev"}
  61. local rifles = { "M4A4", "M4A1", "AK47", "Scout", "Famas", "Galil", "AUG", "SG", "AWP", "SCAR20", "G3SG1"}
  62. local teams = {"CT", "T", "Spectator"}
  63. local defuseTypes = {"Near", "Anywhere"}
  64. local plantTypes = {"Normal", "Anti def."}
  65. local espTargets = {"Enemy", "Both"}
  66. local antiaimTypes = {"Off", "Down"}
  67.  
  68. local wepTypes = {
  69. "Pistols",
  70. "SMGs",
  71. "Rifles",
  72. "Heavies",
  73. }
  74.  
  75. local inputting = false
  76. local inputtingTo
  77.  
  78. local chatmessages = {
  79. "Snippet owns me and all",
  80. "Contact Jan#5106 if you would like to stop getting tapped",
  81. "Snippet - the best Counter Blox cheat on the market",
  82. "Show 'em some love, they just got tapped by Snippet",
  83. "Don't like getting tapped? Buy wally's hub lol",
  84. "Did you see that? Only Snippet is capable of that",
  85. "What are you waiting for? Get good, get Snippet",
  86. }
  87.  
  88. local selectedwep = "USP"
  89. local selectedskin = "Stock"
  90. --will make these auto apply based on what the "applied" value is
  91. local skins = {
  92. ["USP"] = {"USP", applied = "Stock", available = {"Stock", "Skull", "Jade Dream", "Crimson", "Paradise", "Dizzy", "Racing", "Crimson", "Frostbite", "Nighttown", "Paradise", "YellowBelly"}};
  93. ["P2000"] = {"P2000", applied = "Stock", available = {"Stock", "Golden Age", "Apathy", "Comet", "Ruby", "Lunar", "Candycorn"}};
  94. ["Glock"] = {"Glock", applied = "Stock", available = {"Stock", "Day Dreamer", "Desert Camo", "Anubis", "Wetland", "Midnight Tiger", "Angler", "Rush", "Gravestomper", "Scapter", "Tarnish"}};
  95. ["DualBerettas"] = {"DualBerettas", applied = "Stock", available = {"Stock", "Floral", "Neon web", "Hexline", "Xmas"}};
  96. ["P250"] = {"P250", applied = "Stock", available = {"Stock", "Amber", "Bomber", "Goldish", "Equinox", "Frosted", "Green Web", "Solstice", "TC250"}};
  97. ["FiveSeven"] = {"FiveSeven", applied = "Stock", available = {"Stock", "Danjo", "Midnight Ride", "Gifted", "Stigma", "Summer"}};
  98. ["Tec9"] = {"Tec9", applied = "Stock", available = {"Stock", "Charger", "Ironline", "Skintech", "Stocking Stuffer"}};
  99. ["CZ"] = {"CZ", applied = "Stock", available = {"Stock", "Lightning", "Spectre", "Festive", "Orange Web"}};
  100. ["DesertEagle"] = {"DesertEagle", applied = "Stock", available = {"Stock", "Honor-bound", "Krystallos", "Cool Blue", "Cold Truth", "DropX", "Glittery", "Grim", "Scapter", "Survivor", "Weeb", "Xmas"}};
  101. ["R8"] = {"R8", applied = "Stock", available = {"Stock", "Spaded", "Violet", "Hunter", "Banana Gun"}};
  102.  
  103. ["MP9"] = {"MP9", applied = "Stock", available = {"Stock", "Velvita", "Blueroyal", "Wilderness", "Decked Halls", "Cookie Man"}};
  104. ["MAC10"] = {"MAC10", applied = "Stock", available = {"Stock", "Pimpin", "Wetland", "Skeleboney", "Turbo", "Golden Rings"}};
  105. ["MP7"] = {"MP7", applied = "Stock", available = {"Stock", "Sunshot", "Calaxian", "Silent Ops", "Goo", "Holiday"}};
  106. ["UMP"] = {"UMP", applied = "Stock", available = {"Stock", "Militia Camo", "Magma", "Death Grip", "Redline"}};
  107. ["P90"] = {"P90", applied = "Stock", available = {"Stock", "Demon Within", "Redcopy", "Elegant", "Krampus", "P-Chan", "Pine", "Skulls"}};
  108. ["Bizon"] = {"Bizon", applied = "Stock", available = {"Stock", "Shattered", "Oblivion", "Saint Nick", "Festive", "Sergeant"}};
  109.  
  110. ["Nova"] = {"Nova", applied = "Stock", available = {"Stock", "Tiger", "Terraformer", "Sharkesh", "Black Ice"}};
  111. ["XM"] = {"XM", applied = "Stock", available = {"Stock", "Red", "Atomic", "Spectrum", "Arctic", "Campfire"}};
  112. ["MAG7"] = {"Mag7", applied = "Stock", available = {"Stock", "Bombshell", "Outbreak", "Frosty", "Molten", "Striped"}};
  113. ["SawedOff"] = {"SawedOff", applied = "Stock", available = {"Stock", "Colorboom", "Casino", "Opal", "Spooky"}};
  114. ["M249"] = {"M249", applied = "Stock", available = {"Stock", "Aggressor", "P2020", "Spooky", "Wolf"}};
  115. ["Negev"] = {"Negev", applied = "Stock", available = {"Stock", "Wetland", "Quazar", "Winterfell", "Midnightbones"}};
  116.  
  117. ["M4A4"] = {"M4A4", applied = "Stock", available = {"Stock", "Candyskull", "Desert Camo", "Pinkvision", "Precision", "Racer", "Stardust", "Pinkie", "Toy Soldier", "BOT[S]", "Endline", "Devil", "Ice Cap", "Pondside", "Scapter", "Stardust", "Toy Soldier"}};
  118. ["M4A1"] = {"M4A1", applied = "Stock", available = {"Stock", "Desert Camo", "Toucan", "Impulse", "Technician", "Wastelander", "Animatic", "Heavens Gate"}};
  119. ["AK47"] = {"AK47", applied = "Stock", available = {"Stock", "Clown", "Quantum", "Ace", "Code Orange", "Bloodboom", "Precision", "Patch", "Gifted", "Eve", "Hypersonic", "Mean Green", "Outlaws", "Scapter", "Secret Santa", "Skin Committee", "Ugly Sweater", "VAV", "Variant Camo"}};
  120. ["Scout"] = {"Scout", applied = "Stock", available = {"Stock", "Flowing Mists", "Pulse", "Railgun", "Theory", "Hellborn", "Hot Cocoa", "Xmas"}};
  121. ["Famas"] = {"Famas", applied = "Stock", available = {"Stock", "Goliath", "Abstract", "Centipede", "Redux", "Haunted Forest", "Toxic Rain"}};
  122. ["Galil"] = {"Galil", applied = "Stock", available = {"Stock", "Hardware", "Toxicity", "Hardware 2", "Burnt"}};
  123. ["AUG"] = {"AUG", applied = "Stock", available = {"Stock", "Dream Hound", "Phoenix", "Sunsthetic", "Enlisted", "Homestead", "NightHawk"}};
  124. ["SG"] = {"SG", applied = "Stock", available = {"Stock", "Variant Camo", "Knighthood", "Yltude"}};
  125. ["AWP"] = {"AWP", applied = "Stock", available = {"Stock", "Desert Camo", "Instinct", "Bloodborne", "Pink Vision", "Difference", "Abaddon", "Forever", "Lunar", "Racer", "Coffin Biter", "Blastech", "Blue", "Bolt Action", "Dark Galaxy", "Grepkin", "JTF2", "Nerf", "Pear Tree", "Northern Lights", "Scapter", "Weeb"}};
  126. ["SCAR20"] = {"SCAR20", applied = "Stock", available = {"Stock", "Amethyst", "Foliage"}};
  127. ["G3SG1"] = {"G3SG1", applied = "Stock", available = {"Stock", "Foliage", "Hex", "Amethyst", "Mahogany", "Autumn"}};
  128. }
  129.  
  130. local snippethub = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,IgnoreGuiInset = true,Name='snippethub', Parent=game.CoreGui})
  131. local counterb = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0.5, 0.5),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.80000001192093,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=true,Position=UDim2.new(0.5, 0, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 385, 0, 412),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'counterb',Parent = snippethub})
  132. local sett = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.80000001192093,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 19),Rotation=0,Selectable=false,Size=UDim2.new(1, -10, 1, -24),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'sett',Parent = counterb})
  133. local skinstab = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 15),Rotation=0,Selectable=false,Size=UDim2.new(0, 280, 0, 215),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'skinstab',Parent = sett})
  134. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Skinchanger',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = skinstab})
  135. local weplist = CreateInstance('ScrollingFrame',{BottomImage='rbxasset://textures/ui/Scroll/scroll-bottom.png',CanvasPosition=Vector2.new(0, 0),CanvasSize=UDim2.new(0, 0, 0, 200),MidImage='rbxasset://textures/ui/Scroll/scroll-middle.png',ScrollBarThickness=2,ScrollingEnabled=true,TopImage='rbxasset://textures/ui/Scroll/scroll-top.png',Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=true,Draggable=false,Position=UDim2.new(0, 5, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(0.5, -10, 1, -70),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='weplist',Parent = skinstab})
  136. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = weplist })
  137. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  138. local skinlist = CreateInstance('ScrollingFrame',{BottomImage='rbxasset://textures/ui/Scroll/scroll-bottom.png',CanvasPosition=Vector2.new(0, 0),CanvasSize=UDim2.new(0, 0, 0, 398),MidImage='rbxasset://textures/ui/Scroll/scroll-middle.png',ScrollBarThickness=2,ScrollingEnabled=true,TopImage='rbxasset://textures/ui/Scroll/scroll-top.png',Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=true,Draggable=false,Position=UDim2.new(0.5, 5, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(0.5, -10, 1, -70),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='skinlist',Parent = skinstab})
  139. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = skinlist })
  140. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  141. local applyskin = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Apply skin',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0,BorderColor3=Color3.new(0.619608, 0.0823529, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 192),Rotation=0,Selectable=true,Size=UDim2.new(1, -14, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='applyskin',Parent = skinstab})
  142. local weptype = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='',TextColor3=Color3.new(0.972549, 0.972549, 0.972549),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 17),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=2,Name='weptype',Parent = skinstab})
  143. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Pistols',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = weptype})
  144. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 74),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  145. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  146. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  147. local setttab = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 55, 0, 5),Rotation=0,Selectable=true,Size=UDim2.new(0, 50, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='setttab',Parent = counterb})
  148. local maintab = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Main',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 5),Rotation=0,Selectable=true,Size=UDim2.new(0, 50, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='maintab',Parent = counterb})
  149. local main = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.80000001192093,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 19),Rotation=0,Selectable=false,Size=UDim2.new(1, -10, 1, -24),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'main',Parent = counterb})
  150. local misc = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 190, 0, 15),Rotation=0,Selectable=false,Size=UDim2.new(0, 180, 0, 240),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'misc',Parent = main})
  151. local loadout = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Auto loadout',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='loadout',Parent = misc})
  152. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = loadout})
  153. local moola = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Infinite cash',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 15),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='moola',Parent = misc})
  154. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = moola})
  155. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Misc',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = misc})
  156. local secondary = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Secondary',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 90),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='secondary',Parent = misc})
  157. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='USP',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = secondary})
  158. local list = CreateInstance('ScrollingFrame',{BottomImage='rbxasset://textures/ui/Scroll/scroll-bottom.png',CanvasPosition=Vector2.new(0, 0),CanvasSize=UDim2.new(0, 0, 0, 182),MidImage='rbxasset://textures/ui/Scroll/scroll-middle.png',ScrollBarThickness=2,ScrollingEnabled=true,TopImage='rbxasset://textures/ui/Scroll/scroll-top.png',Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=true,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 144),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name='list',Parent = box})
  159. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  160. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  161. local primary = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Primary',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='primary',Parent = misc})
  162. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='MP9',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = primary})
  163. local list = CreateInstance('ScrollingFrame',{BottomImage='rbxasset://textures/ui/Scroll/scroll-bottom.png',CanvasPosition=Vector2.new(0, 0),CanvasSize=UDim2.new(0, 0, 0, 416),MidImage='rbxasset://textures/ui/Scroll/scroll-middle.png',ScrollBarThickness=2,ScrollingEnabled=true,TopImage='rbxasset://textures/ui/Scroll/scroll-top.png',Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=true,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 144),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name='list',Parent = box})
  164. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  165. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  166. local jointeam = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Join team',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 165),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='jointeam',Parent = misc})
  167. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Spectator',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = jointeam})
  168. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 56),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  169. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  170. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  171. local fastplant = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Fast plant',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 85, 0, 140),Rotation=0,Selectable=true,Size=UDim2.new(1, -90, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='fastplant',Parent = misc})
  172. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = fastplant})
  173. local planttype = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='',TextColor3=Color3.new(0.972549, 0.972549, 0.972549),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 142),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=2,Name='planttype',Parent = misc})
  174. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Normal',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = planttype})
  175. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 38),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  176. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  177. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  178. local quickdefuse = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Quick defuse',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 85, 0, 115),Rotation=0,Selectable=true,Size=UDim2.new(1, -90, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='quickdefuse',Parent = misc})
  179. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = quickdefuse})
  180. local note = CreateInstance('Frame',{Style=Enum.FrameStyle.RobloxRound,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 4, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 100, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'note',Parent = quickdefuse})
  181. local text = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size12,Text='Works with hostages',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=12,TextStrokeColor3=Color3.new(1, 1, 1),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='text',Parent = note})
  182. local respawn = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Respawn',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0,BorderColor3=Color3.new(0.619608, 0.0823529, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 192),Rotation=0,Selectable=true,Size=UDim2.new(1, -14, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='respawn',Parent = misc})
  183. local chatspam = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Chat advertise',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 215),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='chatspam',Parent = misc})
  184. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = chatspam})
  185. local deftype = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='',TextColor3=Color3.new(0.972549, 0.972549, 0.972549),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 117),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=2,Name='deftype',Parent = misc})
  186. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Near',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = deftype})
  187. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 38),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  188. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  189. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  190. local rage = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 15),Rotation=0,Selectable=false,Size=UDim2.new(0, 180, 0, 140),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'rage',Parent = main})
  191. local killall = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Kill all',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='killall',Parent = rage})
  192. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = killall})
  193. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Rage',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = rage})
  194. local antiaim = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Anti-aim',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 115),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='antiaim',Parent = rage})
  195. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Off',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = antiaim})
  196. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 38),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  197. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  198. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  199. local oneshot = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='One shot',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='oneshot',Parent = rage})
  200. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = oneshot})
  201. local wallbang = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Wallbang',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 90),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wallbang',Parent = rage})
  202. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = wallbang})
  203. local aimbot = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Aimbot',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 15),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aimbot',Parent = rage})
  204. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = aimbot})
  205. local other = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 168),Rotation=0,Selectable=false,Size=UDim2.new(0, 180, 0, 90),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'other',Parent = main})
  206. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Other',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = other})
  207. local thirdp = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Thirdperson',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 85, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(1, -90, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='thirdp',Parent = other})
  208. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = thirdp})
  209. local fovchanger = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Change fov',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 85, 0, 15),Rotation=0,Selectable=true,Size=UDim2.new(1, -90, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='fovchanger',Parent = other})
  210. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = fovchanger})
  211. local thirdpkey = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Toggle key',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='thirdpkey',Parent = other})
  212. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='KeypadOne',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0.5, 0, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = thirdpkey})
  213. local thirdpdistance = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='20',TextColor3=Color3.new(1, 1, 1), PlaceholderText='distance', PlaceholderColor3=Color3.new(0.898039, 0.117647, 0.313726),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 6, 0, 42),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='thirdpdistance',Parent = other})
  214. local fov = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='90',TextColor3=Color3.new(1, 1, 1), PlaceholderText='amount', PlaceholderColor3=Color3.new(0.898039, 0.117647, 0.313726),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 6, 0, 17),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='fov',Parent = other})
  215. local visuals = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 190, 0, 268),Rotation=0,Selectable=false,Size=UDim2.new(0, 180, 0, 115),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'visuals',Parent = main})
  216. local esp = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Player ESP',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 85, 0, 15),Rotation=0,Selectable=true,Size=UDim2.new(1, -90, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='esp',Parent = visuals})
  217. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = esp})
  218. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Visuals',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = visuals})
  219. local esptarget = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='',TextColor3=Color3.new(0.972549, 0.972549, 0.972549),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 17),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=2,Name='esptarget',Parent = visuals})
  220. local box = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Enemy',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 72, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='box',Parent = esptarget})
  221. local list = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 4),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 38),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=2,Name = 'list',Parent = box})
  222. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 2), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.Name, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = list })
  223. local UIPadding = CreateInstance('UIPadding', {PaddingLeft = UDim.new(0,2), PaddingRight = UDim.new(0,5), PaddingTop = UDim.new(0,2), Parent = list})
  224. local bomb = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Bomb',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 40),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='bomb',Parent = visuals})
  225. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = bomb})
  226. local weapons = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Weapons',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='weapons',Parent = visuals})
  227. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = weapons})
  228. local drawfov = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Draw fov',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 90),Rotation=0,Selectable=true,Size=UDim2.new(1, -10, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='drawfov',Parent = visuals})
  229. local box = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.619608, 0.0823529, 0.207843),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, 2),Rotation=0,Selectable=false,Size=UDim2.new(0, 16, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'box',Parent = drawfov})
  230. local topbar = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Snippet - Counter Blox',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, -20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='topbar',Parent = counterb})
  231. local beetab = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='bee',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -5, 0, 5),Rotation=0,Selectable=true,Size=UDim2.new(0, 50, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='beetab',Parent = counterb})
  232. local bee = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.80000001192093,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 19),Rotation=0,Selectable=false,Size=UDim2.new(1, -10, 1, -24),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'bee',Parent = counterb})
  233. local beee = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.69999998807907,BorderColor3=Color3.new(1, 0.133333, 0.321569),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 5, 0, 15),Rotation=0,Selectable=false,Size=UDim2.new(0, 365, 0, 40),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'beee',Parent = bee})
  234. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='bee',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0.5),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0.20000000298023,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, -20, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = beee})
  235. local yt = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Click then paste into your search bar',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0.133333, 0.321569),BackgroundTransparency=0,BorderColor3=Color3.new(0.619608, 0.0823529, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 17),Rotation=0,Selectable=true,Size=UDim2.new(1, -14, 0, 16),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='yt',Parent = beee})
  236.  
  237. local fov2d = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0.5, 0.5),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.5, 0, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 100, 0, 100),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'fov2d',Parent = snippethub})
  238. local top = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 1),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'top',Parent = fov2d})
  239. local bottom = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, -1),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'bottom',Parent = fov2d})
  240. local left = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 1, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'left',Parent = fov2d})
  241. local right = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, -1, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'right',Parent = fov2d})
  242.  
  243. local espfolder = Instance.new("Folder", game:GetService"CoreGui")
  244. espfolder.Name = "espstuff"
  245. local bombfolder = Instance.new("Folder", game:GetService"CoreGui")
  246. bombfolder.Name = "bomb"
  247. local weaponfolder = Instance.new("Folder", game:GetService"CoreGui")
  248. weaponfolder.Name = "weapons"
  249.  
  250. wait(1)
  251. --auto set gui
  252.  
  253. local function uhh(this)
  254. for _, obj in pairs(this) do
  255. if obj:IsA"TextButton" then
  256. if typeof(cheats[obj.Name]) == "boolean" then
  257. if cheats[obj.Name] then
  258. obj.box.BackgroundColor3 = Color3.fromRGB(255, 34, 82)
  259. else
  260. obj.box.BackgroundColor3 = Color3.fromRGB(158, 21, 53)
  261. end
  262. elseif typeof(cheats[obj.Name]) == "string" or typeof(cheats[obj.Name]) == "number" then
  263. obj.box.Text = cheats[obj.Name]
  264. elseif typeof(cheats[obj.Name]) == "userdata" then
  265. obj.Box.Text = string.char(cheats[obj.Name].Value):upper()
  266. end
  267. end
  268. end
  269. end
  270.  
  271. uhh(main:GetDescendants())
  272. uhh(sett:GetDescendants())
  273.  
  274. local function uhh1(obj)
  275. obj.MouseButton1Click:connect(function()
  276. if typeof(cheats[obj.Name]) == "boolean" then
  277. if cheats[obj.Name] then
  278. cheats[obj.Name] = false
  279. obj.box.BackgroundColor3 = Color3.fromRGB(158, 21, 53)
  280. else
  281. cheats[obj.Name] = true
  282. obj.box.BackgroundColor3 = Color3.fromRGB(255, 34, 82)
  283. end
  284. if obj.Name == "drawfov" then
  285. fov2d.Visible = cheats.drawfov
  286. end
  287. elseif typeof(cheats[obj.Name]) == "string" then
  288. if obj.box.list.Visible == true then
  289. obj.box.list.Visible = false
  290. else
  291. obj.box.list.Visible = true
  292. end
  293. for _,option in pairs(obj.box.list:GetChildren()) do
  294. if option:IsA"TextButton" then
  295. option.MouseButton1Click:connect(function()
  296. cheats[obj.Name] = option.Text
  297. obj.box.Text = option.Text
  298. obj.box.list.Visible = false
  299. if obj.Name == "jointeam" then
  300. localp.Status.Team.Value = cheats.jointeam
  301. game.ReplicatedStorage.Events['JoinTeam']:FireServer(cheats.jointeam)
  302. end
  303. end)
  304. end
  305. end
  306. elseif obj.Name == "thirdpkey" then
  307. if inputting then
  308. inputting = false
  309. else
  310. inputting = true
  311. end
  312. elseif obj.Name == "respawn" then
  313. game.ReplicatedStorage.Events.Spawnme:FireServer()
  314. elseif obj.Name == "applyskin" then
  315. skins[selectedwep].applied = selectedskin
  316. for _,thisgun in pairs(localp.SkinFolder:GetDescendants()) do
  317. if thisgun.Name == selectedwep then
  318. thisgun.Value = selectedskin
  319. end
  320. end
  321. end
  322. end)
  323. obj.MouseEnter:connect(function()
  324. if obj:FindFirstChild"note" then
  325. obj.note.Visible = true
  326. end
  327. end)
  328. obj.MouseLeave:connect(function()
  329. if obj:FindFirstChild"note" then
  330. obj.note.Visible = false
  331. end
  332. end)
  333. end
  334.  
  335. for _, obj in pairs(main:GetDescendants()) do
  336. if obj:IsA"TextButton" then
  337. uhh1(obj)
  338. end
  339. end
  340.  
  341. for _, obj in pairs(sett:GetDescendants()) do
  342. if obj:IsA"TextButton" then
  343. uhh1(obj)
  344. end
  345. end
  346.  
  347. local function makeListItems(thistable, p, skin, wep)
  348. for _,v in pairs(thistable) do
  349. for i=1, table.getn(v), 1 do
  350. local option = Instance.new("TextButton", p)
  351. option.Name = "option"..i
  352. option.LayoutOrder = i
  353. option.BackgroundColor3 = Color3.fromRGB(182, 24, 63)
  354. option.BorderSizePixel = 0
  355. option.Text = v[i]
  356. option.TextColor3 = Color3.new(1,1,1)
  357. option.Size = UDim2.new(1,0,0,16)
  358. option.ZIndex = 2
  359. option.Font = Enum.Font.SourceSans
  360. option.TextSize = 14
  361. if skin then
  362. option.MouseButton1Click:connect(function()
  363. selectedskin = option.Text
  364. end)
  365. end
  366. if wep then
  367. option.MouseButton1Click:connect(function()
  368. for _,v in pairs(weplist:GetChildren()) do
  369. if v:IsA"TextButton" then
  370. v:Destroy()
  371. end
  372. end
  373. local t
  374. if option.Text == "Pistols" then
  375. t = pistols
  376. elseif option.Text == "SMGs" then
  377. t = semis
  378. elseif option.Text == "Rifles" then
  379. t = rifles
  380. else
  381. t = heavies
  382. end
  383. makeListItems({t}, weplist, false)
  384. for _,wep in pairs(weplist:GetChildren()) do
  385. if wep:IsA"TextButton" then
  386. wep.MouseButton1Click:connect(function()
  387. for _,button in pairs(skinlist:GetChildren()) do
  388. if button:IsA"TextButton" then
  389. button:Destroy()
  390. end
  391. end
  392. selectedwep = wep.Text
  393. makeListItems({skins[wep.Text].available}, skinlist, true, false)
  394. end)
  395. end
  396. end
  397. end)
  398. end
  399. end
  400. end
  401. end
  402.  
  403. for _,thisgun in pairs(localp.SkinFolder:GetDescendants()) do
  404. if thisgun:IsA"StringValue" then
  405. thisgun.RobloxLocked = true
  406. end
  407. end
  408.  
  409. makeListItems({semis, heavies, rifles}, primary.box.list, false)
  410. makeListItems({pistols}, secondary.box.list, false)
  411. makeListItems({teams}, jointeam.box.list, false)
  412. makeListItems({plantTypes}, planttype.box.list, false)
  413. makeListItems({defuseTypes}, deftype.box.list, false)
  414. makeListItems({espTargets}, esptarget.box.list, false)
  415. makeListItems({antiaimTypes}, antiaim.box.list, false)
  416. makeListItems({wepTypes}, weptype.box.list, false, true)
  417.  
  418. maintab.MouseButton1Click:connect(function()
  419. main.Visible = true
  420. sett.Visible = false
  421. bee.Visible = false
  422. end)
  423.  
  424. setttab.MouseButton1Click:connect(function()
  425. sett.Visible = true
  426. main.Visible = false
  427. bee.Visible = false
  428. end)
  429.  
  430. beetab.MouseButton1Click:connect(function()
  431. bee.Visible = true
  432. main.Visible = false
  433. sett.Visible = false
  434. end)
  435.  
  436. --functions
  437. local function fuckplayer(player, hitpart, mult)
  438. if players[player.Name].Team ~= localp.Team then
  439. local Remote = game.ReplicatedStorage.Events['HitPart']
  440. local Arguments = {
  441. [1] = hitpart,
  442. [2] = hitpart.Position,
  443. [3] = localp.Character.EquippedTool.Value,
  444. [4] = 8192,
  445. [5] = localp.Character.Gun,
  446. [8] = mult,
  447. [9] = false,
  448. [10] = false,
  449. [11] = hitpart.Position,
  450. [12] = workspace.DistributedGameTime,
  451. [13] = Vector3.new(0,0,0)
  452. }
  453. Remote:FireServer(unpack(Arguments))
  454. end
  455. end
  456.  
  457. local function autoLoadout()
  458.  
  459. end
  460.  
  461. local function getSite()
  462. local site
  463. if (localp.Character.HumanoidRootPart.Position-workspace.Map.SpawnPoints.C4Plant.Position).magnitude <
  464. (localp.Character.HumanoidRootPart.Position-workspace.Map.SpawnPoints.C4Plant2.Position).magnitude then
  465. site = "B"
  466. else
  467. site = "A"
  468. end
  469. return site
  470. end
  471.  
  472. local function plantC4(pos)
  473. if cheats.planttype == "Normal" then
  474. game.ReplicatedStorage.Events['PlantC4']:FireServer((localp.Character.HumanoidRootPart.CFrame+Vector3.new(0,-2,0))*CFrame.Angles(0,0,4), getSite())
  475. else --Anti def.
  476. game.ReplicatedStorage.Events['PlantC4']:FireServer(localp.Character.HumanoidRootPart.CFrame+Vector3.new(0,-6,0), "")
  477. end
  478. end
  479.  
  480. local function defuse()
  481. if cheats.deftype == "Near" then
  482. if (localp.Character.HumanoidRootPart.Position - workspace.C4.PrimaryPart.Position).magnitude < 10 then
  483. if workspace.Map.Gamemode.Value == "defusal" then
  484. localp.Backpack.Defuse:FireServer(workspace.C4)
  485. else
  486. localp.Backpack.Defuse:FireServer(workspace.Map.Regen.Hostages.Hostage)
  487. end
  488. end
  489. else --Anywhere
  490. if workspace.Map.Gamemode.Value == "defusal" then
  491. localp.Backpack.Defuse:FireServer(workspace.C4)
  492. else
  493. localp.Backpack.Defuse:FireServer(workspace.Map.Regen.Hostages.Hostage)
  494. end
  495. end
  496. end
  497.  
  498. local function addEsp(object, parent, size, identifier)
  499. local billboard = Instance.new("BillboardGui", parent)
  500. billboard.Size = size
  501. if identifier == "object" then
  502. billboard.Adornee = object
  503. end
  504. billboard.AlwaysOnTop = true
  505. billboard.Name = object.Name
  506.  
  507. local lines = Instance.new("Frame", billboard)
  508. lines.Name = "lines"
  509. lines.Size = UDim2.new(1,-2,1,-2)
  510. lines.Position = UDim2.new(0,1,0,1)
  511. lines.BackgroundTransparency = 1
  512.  
  513. local outlines = Instance.new("Folder", lines)
  514. outlines.Name = "outlines"
  515. local inlines = Instance.new("Folder", lines)
  516. inlines.Name = "inlines"
  517.  
  518. local outline1 = Instance.new("Frame", outlines)
  519. outline1.Name = "left"
  520. outline1.BorderSizePixel = 0
  521. outline1.BackgroundColor3 = Color3.new(0,0,0)
  522. outline1.Size = UDim2.new(0,-1,1,0)
  523.  
  524. local outline2 = Instance.new("Frame", outlines)
  525. outline2.Name = "right"
  526. outline2.BorderSizePixel = 0
  527. outline2.BackgroundColor3 = Color3.new(0,0,0)
  528. outline2.Position = UDim2.new(1,0,0,0)
  529. outline2.Size = UDim2.new(0,1,1,0)
  530.  
  531. local outline3 = Instance.new("Frame", outlines)
  532. outline3.Name = "up"
  533. outline3.BorderSizePixel = 0
  534. outline3.BackgroundColor3 = Color3.new(0,0,0)
  535. outline3.Size = UDim2.new(1,0,0,-1)
  536.  
  537. local outline4 = Instance.new("Frame", outlines)
  538. outline4.Name = "down"
  539. outline4.BorderSizePixel = 0
  540. outline4.BackgroundColor3 = Color3.new(0,0,0)
  541. outline4.Position = UDim2.new(0,0,1,0)
  542. outline4.Size = UDim2.new(1,0,0,1)
  543.  
  544. local inline1 = Instance.new("Frame", inlines)
  545. inline1.Name = "left"
  546. inline1.BorderSizePixel = 0
  547. inline1.Size = UDim2.new(0,1,1,0)
  548.  
  549. local inline2 = Instance.new("Frame", inlines)
  550. inline2.Name = "right"
  551. inline2.BorderSizePixel = 0
  552. inline2.Position = UDim2.new(1,0,0,0)
  553. inline2.Size = UDim2.new(0,-1,1,0)
  554.  
  555. local inline3 = Instance.new("Frame", inlines)
  556. inline3.Name = "up"
  557. inline3.BorderSizePixel = 0
  558. inline3.Size = UDim2.new(1,0,0,1)
  559.  
  560. local inline4 = Instance.new("Frame", inlines)
  561. inline4.Name = "down"
  562. inline4.BorderSizePixel = 0
  563. inline4.Position = UDim2.new(0,0,1,0)
  564. inline4.Size = UDim2.new(1,0,0,-1)
  565.  
  566. if identifier == "object" then
  567. local label = Instance.new("TextLabel", billboard)
  568. label.Name = "label"
  569. label.Size = UDim2.new(1,0,1,0)
  570. label.BackgroundTransparency = 1
  571. label.TextStrokeTransparency = 0
  572. label.TextColor3 = cheats.esp_itemtextcolor
  573. label.Text = object.Name
  574. label.Font = Enum.Font.Code
  575. label.TextSize = 16
  576. object.AncestryChanged:connect(function()
  577. if object.Name ~= "C4" then
  578. if object.Parent ~= workspace.Debris then
  579. billboard:Destroy()
  580. end
  581. end
  582. end)
  583. end
  584.  
  585. if identifier == "player" then
  586. spawn(function()
  587. while object do
  588. wait()
  589. if cheats.esp then
  590. if object.Character and object.Character:FindFirstChild"LowerTorso" then
  591. local head = object.Character:FindFirstChild"Head"
  592. local lowerpart = object.Character:FindFirstChild"LeftFoot"
  593. local leftarm = object.Character:FindFirstChild"LeftUpperArm"
  594. local rightarm = object.Character:FindFirstChild"RightUpperArm"
  595. if (head and lowerpart) and (leftarm and rightarm) then
  596. billboard.Size = UDim2.new(((leftarm.Position+Vector3.new(0,0.5,0))-(rightarm.Position-Vector3.new(0,0.5,0))).magnitude,0,((head.Position+Vector3.new(0,1,0))-(lowerpart.Position)).magnitude,0)
  597. end
  598. local color = cheats.esp_enemycolor
  599. if object.Team ~= localp.Team then
  600. color = cheats.esp_enemycolor
  601. billboard.Adornee = object.Character.LowerTorso
  602. else
  603. if cheats.esptarget == "Both" then
  604. color = cheats.esp_teamcolor
  605. billboard.Adornee = object.Character.LowerTorso
  606. else
  607. billboard.Adornee = nil
  608. end
  609. end
  610. if object.Name == workspace.Status.HasBomb.Value then
  611. color = cheats.esp_bombcarriercolor
  612. end
  613. inline1.BackgroundColor3 = color
  614. inline2.BackgroundColor3 = color
  615. inline3.BackgroundColor3 = color
  616. inline4.BackgroundColor3 = color
  617. end
  618. else
  619. billboard.Adornee = nil
  620. end
  621. end
  622. end)
  623. end
  624. end
  625.  
  626. local function addAimTarget(player)
  627. game:GetService("RunService").RenderStepped:connect(function()
  628. if cheats.aimbot then
  629. if player.Team ~= localp.Team and
  630. player.Character and
  631. player.Character:FindFirstChild"Head" and
  632. player.Character:FindFirstChild"Humanoid" and
  633. player.Character.Humanoid.Health > 0 then
  634. local head = player.Character.Head
  635. local pos, vis = cam:WorldToScreenPoint(head.Position)
  636. local ray = Ray.new(cam.CFrame.Position, cam.CFrame.LookVector*2000)
  637. local hit = workspace:FindPartOnRayWithIgnoreList(ray, {localp.Character, player.Character.FakeHead})
  638. if vis then
  639. if pos.X > (cam.ViewportSize.X/2)-(cheats.aimfov/2) and pos.X < (cam.ViewportSize.X/2)+(cheats.aimfov/2) and pos.Y > (cam.ViewportSize.Y/2)-(cheats.aimfov/2) and pos.Y < (cam.ViewportSize.Y/2)+(cheats.aimfov/2) then
  640. cam.CFrame = CFrame.new(cam.CFrame.Position, head.Position)
  641. end
  642. end
  643. end
  644. end
  645. end)
  646. end
  647.  
  648. spawn(function()
  649. while wait() do
  650. if cheats.triggerbot then
  651. if localp.Character and mouse.Target and mouse.Target.Parent:FindFirstChild"Humanoid" then
  652. if players[mouse.Target.Parent.Name].Team ~= localp.Team then
  653. wait(cheats.triggerdelay/1000)
  654. mouse1click()
  655. end
  656. end
  657. end
  658. end
  659. end)
  660.  
  661. --idk
  662. uis.InputBegan:connect(function(key, gameProcessed)
  663. if not gameProcessed then
  664. if key.UserInputType == Enum.UserInputType.MouseButton1 then
  665. if cheats.killall and localp.Character and localp.Character:FindFirstChild"Head" then
  666. for _,player in pairs(players:GetChildren()) do
  667. if player.Character and player.Character:FindFirstChild"Head" then
  668. fuckplayer(player, player.Character.Head, 8)
  669. end
  670. end
  671. end
  672. if cheats.oneshot and localp.Character then
  673. local p
  674. local part
  675. local ray = Ray.new(cam.CFrame.Position, cam.CFrame.LookVector*2000)
  676. if cheats.wallbang then
  677. local hit = workspace:FindPartOnRayWithIgnoreList(ray, {localp.Character, workspace.Map, cam:FindFirstChild"Arms"})
  678. p = hit.Parent
  679. part = hit
  680. else
  681. local hit = workspace:FindPartOnRayWithIgnoreList(ray, {localp.Character, cam:FindFirstChild"Arms"})
  682. if players:FindFirstChild(hit.Parent.Name) then
  683. p = hit.Parent
  684. part = hit
  685. end
  686. end
  687. if part then
  688. fuckplayer(p, part, 8)
  689. end
  690. end
  691. if cheats.wallbang and not cheats.oneshot then
  692. local ray = Ray.new(cam.CFrame.Position, cam.CFrame.LookVector*2000)
  693. local hit = workspace:FindPartOnRayWithIgnoreList(ray, {localp.Character, workspace.Map, cam:FindFirstChild"Arms"})
  694. if hit then
  695. fuckplayer(hit.Parent, hit, 1)
  696. end
  697. end
  698. if cheats.fastplant then
  699. if localp.Character and localp.Character.EquippedTool.Value == "C4" then
  700. plantC4()
  701. end
  702. end
  703. end
  704. if key.KeyCode == cheats.thirdpkey then
  705. if cheats.thirdp then
  706. cheats.thirdp = false
  707. thirdp.box.BackgroundColor3 = Color3.fromRGB(158, 21, 53)
  708. else
  709. cheats.thirdp = true
  710. thirdp.box.BackgroundColor3 = Color3.fromRGB(255, 34, 82)
  711. end
  712. end
  713. if key.KeyCode == Enum.KeyCode.E then
  714. if cheats.quickdefuse then
  715. if workspace:FindFirstChild"C4" then
  716. defuse()
  717. end
  718. end
  719. end
  720. end
  721. if key.KeyCode == Enum.KeyCode.F8 then
  722. if counterb.Visible == true then
  723. counterb.Visible = false
  724. --uis.MouseBehavior = Enum.MouseBehavior.LockCenter
  725. else
  726. counterb.Visible = true
  727. --uis.MouseBehavior = Enum.MouseBehavior.Default
  728. end
  729. end
  730. if inputting then
  731. pcall(function()
  732. if key.KeyCode ~= Enum.KeyCode.Unknown then
  733. cheats.thirdpkey = key.KeyCode
  734. thirdpkey.box.Text = string.char(key.KeyCode.Value):upper()
  735. inputting = false
  736. end
  737. end)
  738. end
  739. end)
  740.  
  741. localp.CharacterAdded:connect(function()
  742. if cheats.loadout then
  743. autoLoadout()
  744. end
  745. end)
  746. localp.Cash.Changed:connect(function()
  747. if cheats.moola then
  748. localp.Cash.Value = 16000
  749. end
  750. end)
  751. localp.Status.Team.Changed:connect(function()
  752. jointeam.box.Text = localp.Status.Team.Value
  753. end)
  754.  
  755. players.PlayerAdded:connect(function(player)
  756. addAimTarget(player)
  757. local size = UDim2.new(4,0,5.6,0)
  758. addEsp(player, espfolder, size, "player")
  759. end)
  760.  
  761. for _,player in pairs(players:GetChildren()) do
  762. if player.Name ~= localp.Name then
  763. addAimTarget(player)
  764. if not espfolder:FindFirstChild(player.Name) then
  765. local size = UDim2.new(4,0,5.6,0)
  766. addEsp(player, espfolder, size, "player")
  767. end
  768. end
  769. end
  770.  
  771. players.PlayerRemoving:connect(function(player)
  772. if espfolder:FindFirstChild(player.Name) then
  773. espfolder[player.Name]:Destroy()
  774. end
  775. end)
  776.  
  777. local function objectInWorkspace(child)
  778. if cheats.weapons then
  779. local primaries = {semis, heavies, rifles}
  780. for _,v in pairs(primaries) do
  781. for _,w in pairs(v) do
  782. if child.Name == w then
  783. local size = UDim2.new(1.4,0,1.4,0)
  784. addEsp(child, bombfolder, size, "object")
  785. end
  786. end
  787. end
  788. for _,v in pairs(pistols) do
  789. if child.Name == v then
  790. local size = UDim2.new(1.4,0,1.4,0)
  791. addEsp(child, bombfolder, size, "object")
  792. end
  793. end
  794. end
  795. if child.Name == "C4" then
  796. if cheats.bomb then
  797. if bombfolder:FindFirstChild"C4" then
  798. bombfolder.C4.Adornee = child
  799. else
  800. local size = UDim2.new(1.4,0,1.4,0)
  801. addEsp(child, bombfolder, size, "object")
  802. for _,v in pairs(bombfolder.C4.lines.inlines:GetChildren()) do
  803. v.BackgroundColor3 = cheats.esp_bombcolor
  804. end
  805. end
  806. if child.Parent == workspace then
  807. for i=38,0,-1 do
  808. wait(1)
  809. bombfolder.C4.label.Text = "C4 - "..i
  810. end
  811. bombfolder.C4.label.Text = "C4"
  812. end
  813. end
  814. end
  815. end
  816.  
  817. workspace.Debris.DescendantAdded:connect(function(child)
  818. objectInWorkspace(child, false)
  819. end)
  820.  
  821. workspace.DescendantAdded:connect(function(child)
  822. objectInWorkspace(child, true)
  823. end)
  824.  
  825. workspace.CurrentCamera.ChildAdded:Connect(function(child)
  826. if child.Name == "Arms" then
  827. if cheats.thirdp then
  828. for _,v in pairs(workspace.Camera.Arms:GetDescendants()) do
  829. if pcall(function() return v["Transparency"] end) then
  830. if typeof(v.Transparency) == "number" then
  831. v.Transparency = 1
  832. end
  833. end
  834. end
  835. end
  836. end
  837. end)
  838.  
  839. spawn(function()
  840. while wait(2) do
  841. if cheats.chatspam then
  842. local A_1 = chatmessages[math.random(1,table.getn(chatmessages))]
  843. local A_2 = false
  844. local A_3 = "Innocent"
  845. local A_4 = false
  846. local A_5 = false
  847. local Event = game:GetService("ReplicatedStorage").Events.PlayerChatted
  848. Event:FireServer(A_1, A_2, A_3, A_4, A_5)
  849. end
  850. end
  851. end)
  852.  
  853.  
  854. game:GetService("RunService").RenderStepped:connect(function()
  855. if cheats.fovchanger then
  856. workspace.CurrentCamera.FieldOfView = fov.Text
  857. end
  858. if cheats.thirdp then
  859. if localp.Character then
  860. localp.CameraMinZoomDistance = thirdpdistance.Text
  861. localp.CameraMaxZoomDistance = thirdpdistance.Text
  862. game.Workspace.ThirdPerson.Value = true
  863. end
  864. end
  865. if cheats.antiaim == "Down" then
  866. game.ReplicatedStorage.Events.ControlTurn.RobloxLocked = true
  867. local Arguments = {[1] = 5.1,[2] = false}
  868. game.ReplicatedStorage.Events.ControlTurn:FireServer(unpack(Arguments))
  869. else
  870. game.ReplicatedStorage.Events.ControlTurn.RobloxLocked = false
  871. end
  872. if cheats.drawfov then
  873. fov2d.Size = UDim2.new(0,cheats.aimfov,0,cheats.aimfov)
  874. end
  875. end)
  876.  
  877. yt.MouseButton1Click:connect(function()
  878. setclipboard("https://www.youtube.com/watch?v=psxBizrPIxg")
  879. end)
Add Comment
Please, Sign In to add comment