Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.37 KB | None | 0 0
  1.  
  2. game:GetService("StarterGui"):SetCore("SendNotification",{
  3. Title = "Loaded",
  4. Text = "Revamped for you Derin <3",
  5. Duration = 15,
  6. })
  7. local gPlayers = game:GetService("Players")
  8. local admin = gPlayers.LocalPlayer.Name
  9. local bannedplyrs = {'PeopleYouHate','MorePeopleYouHate'}
  10.  
  11. local admins = {'Friend, Friend'} -- names here of people who have access to your commands! (Your name doesn't need to be in here.)
  12.  
  13. -- declare services / init stuff --
  14.  
  15. local services={}
  16. local cmds={}
  17. local std={}
  18.  
  19. local serverLocked = false
  20.  
  21. function FIX_LIGHTING()
  22. game.Lighting.Ambient = Color3.new(0.5, 0.5, 0.5)
  23. game.Lighting.Brightness = 1
  24. game.Lighting.GlobalShadows = true
  25. game.Lighting.Outlines = false
  26. game.Lighting.TimeOfDay = 14
  27. game.Lighting.FogEnd = 100000
  28. end
  29.  
  30. services.players=gPlayers
  31. services.lighting=game:GetService('Lighting')
  32. services.workspace=game:GetService('Workspace')
  33. services.events = {}
  34. local user = gPlayers.LocalPlayer
  35.  
  36. local cmdprefix = '!'
  37. local scriptprefix = '/'
  38. local split = " "
  39.  
  40.  
  41. updateevents=function()
  42. for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
  43. for i,v in pairs(gPlayers:players())do
  44. local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
  45. services.events[#services.events+1] = ev
  46. end
  47. end
  48.  
  49. std.inTable=function(tbl,val)
  50. if tbl==nil then return false end
  51.  
  52. for _,v in pairs(tbl)do
  53. if v==val then return true end
  54. end
  55. return false
  56. end
  57.  
  58. std.out=function(str)
  59. print(str)
  60. end
  61.  
  62. std.list=function(tbl) --turns table into list with commas
  63. local str=''
  64. for i,v in pairs(tbl)do
  65. str=str..tostring(v)
  66. if i~=#tbl then str=str..', ' end
  67. end
  68. return str
  69. end
  70.  
  71. std.endat=function(str,val)
  72. local z=str:find(val)
  73. if z then
  74. return str:sub(0,z-string.len(val)),true
  75. else
  76. return str,false
  77. end
  78. end
  79.  
  80. std.first=function(str) return str:sub(1,1) end
  81.  
  82. isAdmin=function(name)
  83. if name==admin then
  84. return true
  85. elseif admins[name]==true then
  86. return true
  87. end
  88. return false
  89. end
  90.  
  91. gPlayers.PlayerAdded:connect(function(player)
  92. for i,v in pairs(bannedplyrs) do
  93. game.ReplicatedStorage.Event:FireServer("TPD", 2000, gPlayers[v].Character.Humanoid)
  94. end
  95. end)
  96.  
  97. local exec=function(str)
  98. spawn(function()
  99. local script, loaderr = loadstring(str)
  100. if not script then
  101. error(loaderr)
  102. else
  103. script()
  104. end
  105. end)
  106. end
  107.  
  108. local findCmd=function(cmd_name)
  109. for i,v in pairs(cmds)do
  110. if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
  111. return v
  112. end
  113. end
  114. end
  115.  
  116. local getCmd=function(msg)
  117. local cmd,hassplit=std.endat(msg:lower(),split)
  118. if hassplit then
  119. return {cmd,true}
  120. else
  121. return {cmd,false}
  122. end
  123. end
  124.  
  125. local getprfx=function(strn)
  126. if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
  127. elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
  128. end return
  129. end
  130.  
  131. local getArgs=function(str)
  132. local args={}
  133. local new_arg=nil
  134. local hassplit=nil
  135. local s=str
  136. repeat
  137. new_arg,hassplit=std.endat(s:lower(),split)
  138. if new_arg~='' then
  139. args[#args+1]=new_arg
  140. s=s:sub(string.len(new_arg)+string.len(split)+1)
  141. end
  142. until hassplit==false
  143. return args
  144. end
  145.  
  146. local function execCmd(str, plr)
  147. local s_cmd
  148. local a
  149. local cmd
  150. s_cmd = getCmd(str) --separate command from string using split {command name,arg bool (for arg system)}
  151. cmd = findCmd(s_cmd[1]) --get command object {NAME,DESC,{ALIASES},function(args)}
  152. if cmd == nil then return end
  153. a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)--start string "a" after command and split
  154. local args=getArgs(a)--gets us a nice table of arguments
  155.  
  156. pcall(function()
  157. cmd.FUNC(args, plr)
  158. end)
  159. end
  160.  
  161. function do_exec(str,plr)
  162. if not isAdmin(plr.Name)then return end
  163.  
  164. str=str:gsub('/e ','')--remove "/e " the easy way!
  165.  
  166. local t=getprfx(str)
  167. if t==nil then return end
  168. str=str:sub(t[2])
  169. if t[1]=='exec' then
  170. exec(str)
  171. elseif t[1]=='cmd' then
  172. execCmd(str, plr)
  173. end
  174. end
  175.  
  176. updateevents()
  177. _G.exec_cmd = execCmd
  178. --game.Players.LocalPlayer.Chatted:connect(doexec)
  179.  
  180. local _char=function(plr_name)
  181. for i,v in pairs(game.Players:GetChildren())do
  182. if v:IsA'Player'then
  183. if v.Name==plr_name then return v.Character end
  184. end
  185. end
  186. return
  187. end
  188.  
  189. local _plr=function(plr_name)
  190. for i,v in pairs(game.Players:GetChildren())do
  191. if v:IsA'Player'then
  192. if v.Name==plr_name then return v end
  193. end
  194. end
  195. return
  196. end
  197.  
  198. function addcmd(name,desc,alias,func)
  199. cmds[#cmds+1]=
  200. {
  201. NAME=name;
  202. DESC=desc;
  203. ALIAS=alias;
  204. FUNC=func;
  205. }
  206. end
  207.  
  208. local function getPlayer(name)
  209. local nameTable = {}
  210. name=name:lower()
  211. if name == "me" then
  212. return {admin}
  213. elseif name == "others" then
  214. for i,v in pairs(gPlayers:GetChildren()) do
  215. if v:IsA'Player'then
  216. if v.Name~=admin then
  217. nameTable[#nameTable+1]=v.Name
  218. end
  219. end
  220. end
  221. elseif name == "all" then
  222. for i,v in pairs(gPlayers:GetChildren()) do
  223. if v:IsA'Player'then
  224. nameTable[#nameTable+1]=v.Name
  225. end
  226. end
  227. else
  228. for i,v in pairs(gPlayers:GetChildren()) do
  229. local lname = v.Name:lower()
  230. local i,j = lname:find(name)
  231. if i == 1 then
  232. return {v.Name}
  233. end
  234. end
  235. end
  236. return nameTable
  237. end
  238.  
  239. -- commands --
  240.  
  241. addcmd('Aspeed','Increases your attack speed',nil,
  242. function(args)
  243. local player = game.Players.LocalPlayer
  244. player.Backpack:WaitForChild("Punch").Info.Cooldown.Value = 0.01
  245. player.Backpack.Punch.Info.AnimSpeed.Value = 5
  246. player.Backpack:WaitForChild("Knife").Info.Cooldown.Value = 0.01
  247. player.Backpack.Knife.Info.AnimSpeed.Value = 5
  248. if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, 503266657) then
  249. player.Backpack:WaitForChild("Pipe").Info.Cooldown.Value = 0.01
  250. player.Backpack.Pipe.Info.AnimSpeed.Value = 5
  251. end
  252. end)
  253.  
  254. addcmd('SpeedGui','Increases your attack speed',nil,
  255. function(args)
  256. plr = game.Players.LocalPlayer
  257. local BoogaFucker = Instance.new("ScreenGui")
  258. local BoogaFuckerPackageFrame = Instance.new("Frame")
  259. local MainFrame = Instance.new("Frame")
  260. local Brandname = Instance.new("TextLabel")
  261. local Border = Instance.new("ImageLabel")
  262. local Border_2 = Instance.new("ImageLabel")
  263. local Border_3 = Instance.new("ImageLabel")
  264. local Border_4 = Instance.new("ImageLabel")
  265. local Border_5 = Instance.new("ImageLabel")
  266. local Border_6 = Instance.new("ImageLabel")
  267. local Border_7 = Instance.new("ImageLabel")
  268. local Border_8 = Instance.new("ImageLabel")
  269. local BackGround = Instance.new("Frame")
  270. local Border_9 = Instance.new("Frame")
  271. local ShadowBrandName = Instance.new("TextLabel")
  272. local KeyBindsMain = Instance.new("Frame")
  273. local Border_10 = Instance.new("ImageLabel")
  274. local Border_11 = Instance.new("ImageLabel")
  275. local Border_12 = Instance.new("ImageLabel")
  276. local Border_13 = Instance.new("ImageLabel")
  277. local Border_14 = Instance.new("ImageLabel")
  278. local SpeedInstaDestroytext = Instance.new("TextLabel")
  279. local Speedkeybindtextbox = Instance.new("TextBox")
  280. local Keybindsname = Instance.new("TextLabel")
  281. local ShadowKeybindsname = Instance.new("TextLabel")
  282. local Dropallitemstext = Instance.new("TextLabel")
  283. local Dropallitemskeybindtextbox = Instance.new("TextBox")
  284. local Redtheme = Instance.new("TextButton")
  285. local Pinktheme = Instance.new("TextButton")
  286. local Bluetheme = Instance.new("TextButton")
  287. local Autopickuptext = Instance.new("TextLabel")
  288. local Dropallitemskeybindtextbox_2 = Instance.new("TextBox")
  289. local Speed = Instance.new("TextButton")
  290. local TextButton = Instance.new("Frame")
  291. local CreditsMain = Instance.new("Frame")
  292. local Border_15 = Instance.new("ImageLabel")
  293. local Border_16 = Instance.new("ImageLabel")
  294. local Border_17 = Instance.new("ImageLabel")
  295. local Border_18 = Instance.new("ImageLabel")
  296. local Border_19 = Instance.new("ImageLabel")
  297. local Speedchangetext = Instance.new("TextLabel")
  298. local Changespeedtextbox = Instance.new("TextBox")
  299. local JumpPower = Instance.new("TextButton")
  300. local TextButtonnoyou = Instance.new("Frame")
  301. local JumpPowernumber = Instance.new("TextBox")
  302. local Dropallitemstext_2 = Instance.new("TextButton")
  303. local TextButtonyougey = Instance.new("Frame")
  304. local Dropallinventorynumber = Instance.new("TextBox")
  305. local KeybindsOpenClose = Instance.new("TextButton")
  306. local InfiniteJump = Instance.new("TextButton")
  307. local TextButton_2 = Instance.new("Frame")
  308. local CreditsOpenClose = Instance.new("TextButton")
  309. local esptrack = Instance.new("TextButton")
  310. local TextButtonEsp = Instance.new("Frame")
  311. local Removealleffects = Instance.new("TextButton")
  312. local TextButtonRAE = Instance.new("Frame")
  313. local AutoPickup = Instance.new("TextButton")
  314. local TextButtonAP = Instance.new("Frame")
  315. local StartFrame = Instance.new("Frame")
  316. local StartHeaderBorder = Instance.new("Frame")
  317. local StartFooterBorder = Instance.new("Frame")
  318. local StartName = Instance.new("TextLabel")
  319. local FREEbutton = Instance.new("TextButton")
  320. local PREMIUMbutton = Instance.new("TextButton")
  321. local StartMidBorder = Instance.new("Frame")
  322. local StartRightBorder = Instance.new("Frame")
  323. local StartLeftBorder = Instance.new("Frame")
  324. local StartFreeText = Instance.new("TextLabel")
  325. local StartPremiumText = Instance.new("TextLabel")
  326. local StartName_2 = Instance.new("TextLabel")
  327. local LoginFrame = Instance.new("Frame")
  328. local LoginHeaderBorder = Instance.new("Frame")
  329. local LoginFooterBorder = Instance.new("Frame")
  330. local LoginName = Instance.new("TextLabel")
  331. local LoginConfirm = Instance.new("TextButton")
  332. local LoginRightBorder = Instance.new("Frame")
  333. local LoginLeftBorder = Instance.new("Frame")
  334. local LoginBackButton = Instance.new("TextButton")
  335. local LoginUser = Instance.new("TextBox")
  336. local LoginPass = Instance.new("TextBox")
  337. local KeyBind = Instance.new("Frame")
  338. local KeyBindFinishStartupButton = Instance.new("TextButton")
  339. local KeyBindHeather = Instance.new("Frame")
  340. local KeyBindStartupTextBox = Instance.new("TextBox")
  341. local KeyBindSetupText = Instance.new("TextLabel")
  342. local KeyBindName = Instance.new("TextLabel")
  343.  
  344. -- Properties
  345.  
  346. BoogaFucker.Name = "BoogaFucker"
  347. BoogaFucker.Parent = plr.PlayerGui
  348.  
  349. BoogaFuckerPackageFrame.Name = "BoogaFucker PackageFrame"
  350. BoogaFuckerPackageFrame.Parent = BoogaFucker
  351. BoogaFuckerPackageFrame.Active = true
  352. BoogaFuckerPackageFrame.BackgroundColor3 = Color3.new(1, 1, 0.921569)
  353. BoogaFuckerPackageFrame.BackgroundTransparency = 1
  354. BoogaFuckerPackageFrame.BorderSizePixel = 0
  355. BoogaFuckerPackageFrame.Position = UDim2.new(0.63731128, -275, 0.766912699, -150)
  356. BoogaFuckerPackageFrame.Selectable = true
  357. BoogaFuckerPackageFrame.Size = UDim2.new(0, 550, 0, 300)
  358. BoogaFuckerPackageFrame.ZIndex = 2
  359. BoogaFuckerPackageFrame.Draggable = true
  360.  
  361. MainFrame.Name = "MainFrame"
  362. MainFrame.Parent = BoogaFuckerPackageFrame
  363. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  364. MainFrame.BackgroundTransparency = 1
  365. MainFrame.BorderSizePixel = 0
  366. MainFrame.NextSelectionLeft = Border_3
  367. MainFrame.Position = UDim2.new(0, 12, 0, 12)
  368. MainFrame.Size = UDim2.new(1, -24, 1, -24)
  369.  
  370. Brandname.Name = "Brandname"
  371. Brandname.Parent = MainFrame
  372. Brandname.BackgroundColor3 = Color3.new(1, 1, 1)
  373. Brandname.BackgroundTransparency = 1
  374. Brandname.Position = UDim2.new(0.24809885, 0, -0.0217391308, 0)
  375. Brandname.Size = UDim2.new(0.503802299, 0, 0.177536234, 0)
  376. Brandname.ZIndex = 2
  377. Brandname.Font = Enum.Font.SourceSansBold
  378. Brandname.FontSize = Enum.FontSize.Size14
  379. Brandname.Text = "THE STREETS"
  380. Brandname.TextColor3 = Color3.new(1, 1, 1)
  381. Brandname.TextScaled = true
  382. Brandname.TextSize = 14
  383. Brandname.TextStrokeTransparency = 0
  384. Brandname.TextWrapped = true
  385.  
  386. Border.Name = "Border"
  387. Border.Parent = MainFrame
  388. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  389. Border.BackgroundTransparency = 1
  390. Border.BorderSizePixel = 0
  391. Border.Position = UDim2.new(1, 0, 0, 0)
  392. Border.Size = UDim2.new(0, 12, 1, 0)
  393. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  394. Border.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  395. Border.ImageRectOffset = Vector2.new(24, 12)
  396. Border.ImageRectSize = Vector2.new(12, 12)
  397.  
  398. Border_2.Name = "Border"
  399. Border_2.Parent = MainFrame
  400. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  401. Border_2.BackgroundTransparency = 1
  402. Border_2.BorderSizePixel = 0
  403. Border_2.Position = UDim2.new(1, 0, 1, 0)
  404. Border_2.Size = UDim2.new(0, 12, 0, 12)
  405. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  406. Border_2.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  407. Border_2.ImageRectOffset = Vector2.new(24, 24)
  408. Border_2.ImageRectSize = Vector2.new(12, 12)
  409.  
  410. Border_3.Name = "Border"
  411. Border_3.Parent = MainFrame
  412. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  413. Border_3.BackgroundTransparency = 1
  414. Border_3.BorderSizePixel = 0
  415. Border_3.Position = UDim2.new(0, -12, 0, 0)
  416. Border_3.Size = UDim2.new(0, 12, 1, 0)
  417. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  418. Border_3.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  419. Border_3.ImageRectOffset = Vector2.new(0, 12)
  420. Border_3.ImageRectSize = Vector2.new(12, 12)
  421.  
  422. Border_4.Name = "Border"
  423. Border_4.Parent = MainFrame
  424. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  425. Border_4.BackgroundTransparency = 1
  426. Border_4.BorderSizePixel = 0
  427. Border_4.Position = UDim2.new(0, 0, 1, 0)
  428. Border_4.Size = UDim2.new(1, 0, 0, 12)
  429. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  430. Border_4.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  431. Border_4.ImageRectOffset = Vector2.new(12, 24)
  432. Border_4.ImageRectSize = Vector2.new(12, 12)
  433.  
  434. Border_5.Name = "Border"
  435. Border_5.Parent = MainFrame
  436. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  437. Border_5.BackgroundTransparency = 1
  438. Border_5.BorderSizePixel = 0
  439. Border_5.Position = UDim2.new(0, 0, 0, -12)
  440. Border_5.Size = UDim2.new(1, 0, 0, 12)
  441. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  442. Border_5.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  443. Border_5.ImageRectOffset = Vector2.new(12, 0)
  444. Border_5.ImageRectSize = Vector2.new(12, 12)
  445.  
  446. Border_6.Name = "Border"
  447. Border_6.Parent = MainFrame
  448. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  449. Border_6.BackgroundTransparency = 1
  450. Border_6.BorderSizePixel = 0
  451. Border_6.Position = UDim2.new(0, -12, 1, 0)
  452. Border_6.Size = UDim2.new(0, 12, 0, 12)
  453. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  454. Border_6.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  455. Border_6.ImageRectOffset = Vector2.new(0, 24)
  456. Border_6.ImageRectSize = Vector2.new(12, 12)
  457.  
  458. Border_7.Name = "Border"
  459. Border_7.Parent = MainFrame
  460. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  461. Border_7.BackgroundTransparency = 1
  462. Border_7.BorderSizePixel = 0
  463. Border_7.Position = UDim2.new(1, 0, 0, -12)
  464. Border_7.Size = UDim2.new(0, 12, 0, 12)
  465. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  466. Border_7.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  467. Border_7.ImageRectOffset = Vector2.new(24, 0)
  468. Border_7.ImageRectSize = Vector2.new(12, 12)
  469.  
  470. Border_8.Name = "Border"
  471. Border_8.Parent = MainFrame
  472. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  473. Border_8.BackgroundTransparency = 1
  474. Border_8.BorderSizePixel = 0
  475. Border_8.Position = UDim2.new(0, -12, 0, -12)
  476. Border_8.Size = UDim2.new(0, 12, 0, 12)
  477. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  478. Border_8.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  479. Border_8.ImageRectSize = Vector2.new(12, 12)
  480.  
  481. BackGround.Name = "BackGround"
  482. BackGround.Parent = MainFrame
  483. BackGround.Active = true
  484. BackGround.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  485. BackGround.BackgroundTransparency = 0.20000000298023
  486. BackGround.BorderSizePixel = 0
  487. BackGround.Size = UDim2.new(1, 0, 1, 0)
  488.  
  489. Border_9.Name = "Border"
  490. Border_9.Parent = MainFrame
  491. Border_9.Active = true
  492. Border_9.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  493. Border_9.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  494. Border_9.BorderSizePixel = 0
  495. Border_9.Position = UDim2.new(0, 0, 0.155797094, 0)
  496. Border_9.Size = UDim2.new(1, 0, 0.0507246368, 0)
  497.  
  498. ShadowBrandName.Name = "ShadowBrandName"
  499. ShadowBrandName.Parent = MainFrame
  500. ShadowBrandName.BackgroundColor3 = Color3.new(1, 1, 1)
  501. ShadowBrandName.BackgroundTransparency = 1
  502. ShadowBrandName.Position = UDim2.new(0.281368822, 0, -0.0434782617, 0)
  503. ShadowBrandName.Size = UDim2.new(0.437262356, 0, 0.19927536, 0)
  504. ShadowBrandName.Font = Enum.Font.SourceSansBold
  505. ShadowBrandName.FontSize = Enum.FontSize.Size14
  506. ShadowBrandName.Text = "BoogaFucker"
  507. ShadowBrandName.TextColor3 = Color3.new(0, 0, 0)
  508. ShadowBrandName.TextScaled = true
  509. ShadowBrandName.TextSize = 14
  510. ShadowBrandName.TextStrokeTransparency = 0
  511. ShadowBrandName.TextWrapped = true
  512.  
  513. KeyBindsMain.Name = "KeyBindsMain"
  514. KeyBindsMain.Parent = MainFrame
  515. KeyBindsMain.Active = true
  516. KeyBindsMain.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  517. KeyBindsMain.BackgroundTransparency = 0.20000000298023
  518. KeyBindsMain.BorderSizePixel = 0
  519. KeyBindsMain.Position = UDim2.new(-0.370722443, 0, 0, 0)
  520. KeyBindsMain.Size = UDim2.new(0.347908735, 0, 1, 0)
  521.  
  522. Border_10.Name = "Border"
  523. Border_10.Parent = KeyBindsMain
  524. Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
  525. Border_10.BackgroundTransparency = 1
  526. Border_10.BorderSizePixel = 0
  527. Border_10.Position = UDim2.new(0, 0, 0, -12)
  528. Border_10.Size = UDim2.new(1.06557381, 0, 0, 12)
  529. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  530. Border_10.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  531. Border_10.ImageRectOffset = Vector2.new(12, 0)
  532. Border_10.ImageRectSize = Vector2.new(12, 12)
  533.  
  534. Border_11.Name = "Border"
  535. Border_11.Parent = KeyBindsMain
  536. Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
  537. Border_11.BackgroundTransparency = 1
  538. Border_11.BorderSizePixel = 0
  539. Border_11.Position = UDim2.new(0, -12, 0, -12)
  540. Border_11.Size = UDim2.new(0, 12, 0, 12)
  541. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  542. Border_11.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  543. Border_11.ImageRectSize = Vector2.new(12, 12)
  544.  
  545. Border_12.Name = "Border"
  546. Border_12.Parent = KeyBindsMain
  547. Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
  548. Border_12.BackgroundTransparency = 1
  549. Border_12.BorderSizePixel = 0
  550. Border_12.Position = UDim2.new(0, -12, 0, 0)
  551. Border_12.Size = UDim2.new(0, 12, 1, 0)
  552. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  553. Border_12.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  554. Border_12.ImageRectOffset = Vector2.new(0, 12)
  555. Border_12.ImageRectSize = Vector2.new(12, 12)
  556.  
  557. Border_13.Name = "Border"
  558. Border_13.Parent = KeyBindsMain
  559. Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
  560. Border_13.BackgroundTransparency = 1
  561. Border_13.BorderSizePixel = 0
  562. Border_13.Position = UDim2.new(0, -12, 1, 0)
  563. Border_13.Size = UDim2.new(0, 12, 0, 12)
  564. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  565. Border_13.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  566. Border_13.ImageRectOffset = Vector2.new(0, 24)
  567. Border_13.ImageRectSize = Vector2.new(12, 12)
  568.  
  569. Border_14.Name = "Border"
  570. Border_14.Parent = KeyBindsMain
  571. Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
  572. Border_14.BackgroundTransparency = 1
  573. Border_14.BorderSizePixel = 0
  574. Border_14.Position = UDim2.new(0, 0, 0, 276)
  575. Border_14.Size = UDim2.new(1.06557381, 0, 0, 12)
  576. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  577. Border_14.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  578. Border_14.ImageRectOffset = Vector2.new(12, 0)
  579. Border_14.ImageRectSize = Vector2.new(12, 12)
  580.  
  581. SpeedInstaDestroytext.Name = "Speed | Insta Destroy text"
  582. SpeedInstaDestroytext.Parent = KeyBindsMain
  583. SpeedInstaDestroytext.BackgroundColor3 = Color3.new(1, 1, 1)
  584. SpeedInstaDestroytext.BackgroundTransparency = 1
  585. SpeedInstaDestroytext.Position = UDim2.new(0.0437158458, 0, 0.173913032, 0)
  586. SpeedInstaDestroytext.Size = UDim2.new(0.907103837, 0, 0.112318844, 0)
  587. SpeedInstaDestroytext.ZIndex = 2
  588. SpeedInstaDestroytext.Font = Enum.Font.SourceSansBold
  589. SpeedInstaDestroytext.FontSize = Enum.FontSize.Size24
  590. SpeedInstaDestroytext.Text = "speed"
  591. SpeedInstaDestroytext.TextColor3 = Color3.new(1, 1, 1)
  592. SpeedInstaDestroytext.TextSize = 20
  593. SpeedInstaDestroytext.TextStrokeTransparency = 0
  594. SpeedInstaDestroytext.TextWrapped = true
  595.  
  596. Speedkeybindtextbox.Name = "Speed keybind textbox"
  597. Speedkeybindtextbox.Parent = KeyBindsMain
  598. Speedkeybindtextbox.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  599. Speedkeybindtextbox.Position = UDim2.new(0.0491803288, 0, 0.318840593, 0)
  600. Speedkeybindtextbox.Selectable = false
  601. Speedkeybindtextbox.Size = UDim2.new(0, 165, 0, 23)
  602. Speedkeybindtextbox.Font = Enum.Font.SourceSans
  603. Speedkeybindtextbox.FontSize = Enum.FontSize.Size24
  604. Speedkeybindtextbox.Text = "q"
  605. Speedkeybindtextbox.TextColor3 = Color3.new(1, 1, 1)
  606. Speedkeybindtextbox.TextScaled = true
  607. Speedkeybindtextbox.TextSize = 20
  608. Speedkeybindtextbox.TextWrapped = true
  609.  
  610. Keybindsname.Name = "Keybindsname"
  611. Keybindsname.Parent = KeyBindsMain
  612. Keybindsname.BackgroundColor3 = Color3.new(1, 1, 1)
  613. Keybindsname.BackgroundTransparency = 1
  614. Keybindsname.Position = UDim2.new(0.0765027329, 0, 0.0108695654, 0)
  615. Keybindsname.Size = UDim2.new(0.841530025, 0, 0.177536234, 0)
  616. Keybindsname.ZIndex = 2
  617. Keybindsname.Font = Enum.Font.SourceSansBold
  618. Keybindsname.FontSize = Enum.FontSize.Size14
  619. Keybindsname.Text = "Keybinds"
  620. Keybindsname.TextColor3 = Color3.new(1, 1, 1)
  621. Keybindsname.TextScaled = true
  622. Keybindsname.TextSize = 14
  623. Keybindsname.TextStrokeTransparency = 0
  624. Keybindsname.TextWrapped = true
  625.  
  626. ShadowKeybindsname.Name = "ShadowKeybindsname"
  627. ShadowKeybindsname.Parent = KeyBindsMain
  628. ShadowKeybindsname.BackgroundColor3 = Color3.new(1, 1, 1)
  629. ShadowKeybindsname.BackgroundTransparency = 1
  630. ShadowKeybindsname.Position = UDim2.new(0.114754096, 0, 0.0108695654, 0)
  631. ShadowKeybindsname.Size = UDim2.new(0.83606559, 0, 0.177536234, 0)
  632. ShadowKeybindsname.Font = Enum.Font.SourceSansBold
  633. ShadowKeybindsname.FontSize = Enum.FontSize.Size14
  634. ShadowKeybindsname.Text = "Keybinds"
  635. ShadowKeybindsname.TextColor3 = Color3.new(0, 0, 0)
  636. ShadowKeybindsname.TextScaled = true
  637. ShadowKeybindsname.TextSize = 14
  638. ShadowKeybindsname.TextStrokeTransparency = 0
  639. ShadowKeybindsname.TextWrapped = true
  640.  
  641. Dropallitemstext.Name = "Drop all items text"
  642. Dropallitemstext.Parent = KeyBindsMain
  643. Dropallitemstext.BackgroundColor3 = Color3.new(1, 1, 1)
  644. Dropallitemstext.BackgroundTransparency = 1
  645. Dropallitemstext.Position = UDim2.new(0.0491803251, 0, 0.432971001, 0)
  646. Dropallitemstext.Size = UDim2.new(0.907103837, 0, 0.112318844, 0)
  647. Dropallitemstext.ZIndex = 2
  648. Dropallitemstext.Font = Enum.Font.SourceSansBold
  649. Dropallitemstext.FontSize = Enum.FontSize.Size24
  650. Dropallitemstext.Text = "Drop all items"
  651. Dropallitemstext.TextColor3 = Color3.new(1, 1, 1)
  652. Dropallitemstext.TextSize = 20
  653. Dropallitemstext.TextStrokeTransparency = 0
  654. Dropallitemstext.TextWrapped = true
  655.  
  656. Dropallitemskeybindtextbox.Name = "Drop all items keybind textbox"
  657. Dropallitemskeybindtextbox.Parent = KeyBindsMain
  658. Dropallitemskeybindtextbox.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  659. Dropallitemskeybindtextbox.Position = UDim2.new(0.0464480855, 0, 0.577898502, 0)
  660. Dropallitemskeybindtextbox.Selectable = false
  661. Dropallitemskeybindtextbox.Size = UDim2.new(0, 166, 0, 23)
  662. Dropallitemskeybindtextbox.Font = Enum.Font.SourceSans
  663. Dropallitemskeybindtextbox.FontSize = Enum.FontSize.Size24
  664. Dropallitemskeybindtextbox.Text = "h"
  665. Dropallitemskeybindtextbox.TextColor3 = Color3.new(1, 1, 1)
  666. Dropallitemskeybindtextbox.TextScaled = true
  667. Dropallitemskeybindtextbox.TextSize = 20
  668. Dropallitemskeybindtextbox.TextWrapped = true
  669.  
  670. Redtheme.Name = "Red theme"
  671. Redtheme.Parent = KeyBindsMain
  672. Redtheme.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  673. Redtheme.BackgroundTransparency = 0.60000002384186
  674. Redtheme.BorderSizePixel = 0
  675. Redtheme.Position = UDim2.new(0.0491803065, 0, 0.884057999, 0)
  676. Redtheme.Size = UDim2.new(0, 37, 0, 24)
  677. Redtheme.ZIndex = 2
  678. Redtheme.Font = Enum.Font.SourceSansBold
  679. Redtheme.FontSize = Enum.FontSize.Size24
  680. Redtheme.Text = "Red"
  681. Redtheme.TextColor3 = Color3.new(1, 1, 1)
  682. Redtheme.TextScaled = true
  683. Redtheme.TextSize = 20
  684. Redtheme.TextWrapped = true
  685. Redtheme.MouseButton1Down:connect(function()
  686. BackGround.BackgroundColor3 = Color3.fromRGB(246,16,16)
  687. KeyBindsMain.BackgroundColor3 = Color3.fromRGB(246,16,16)
  688. CreditsMain.BackgroundColor3 = Color3.fromRGB(246,16,16)
  689. end)
  690.  
  691. Pinktheme.Name = "Pink theme"
  692. Pinktheme.Parent = KeyBindsMain
  693. Pinktheme.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  694. Pinktheme.BackgroundTransparency = 0.60000002384186
  695. Pinktheme.BorderSizePixel = 0
  696. Pinktheme.Position = UDim2.new(0.748633862, 0, 0.884057999, 0)
  697. Pinktheme.Size = UDim2.new(0, 37, 0, 24)
  698. Pinktheme.ZIndex = 2
  699. Pinktheme.Font = Enum.Font.SourceSansBold
  700. Pinktheme.FontSize = Enum.FontSize.Size24
  701. Pinktheme.Text = "Pink"
  702. Pinktheme.TextColor3 = Color3.new(1, 1, 1)
  703. Pinktheme.TextScaled = true
  704. Pinktheme.TextSize = 20
  705. Pinktheme.TextWrapped = true
  706. Pinktheme.MouseButton1Down:connect(function()
  707. BackGround.BackgroundColor3 = Color3.fromRGB(247,0,255)
  708. KeyBindsMain.BackgroundColor3 = Color3.fromRGB(247,0,255)
  709. CreditsMain.BackgroundColor3 = Color3.fromRGB(247,0,255)
  710. end)
  711.  
  712. Bluetheme.Name = "Blue theme"
  713. Bluetheme.Parent = KeyBindsMain
  714. Bluetheme.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  715. Bluetheme.BackgroundTransparency = 0.60000002384186
  716. Bluetheme.BorderSizePixel = 0
  717. Bluetheme.Position = UDim2.new(0.396174848, 0, 0.884057999, 0)
  718. Bluetheme.Size = UDim2.new(0, 37, 0, 24)
  719. Bluetheme.ZIndex = 2
  720. Bluetheme.Font = Enum.Font.SourceSansBold
  721. Bluetheme.FontSize = Enum.FontSize.Size24
  722. Bluetheme.Text = "Blue"
  723. Bluetheme.TextColor3 = Color3.new(1, 1, 1)
  724. Bluetheme.TextScaled = true
  725. Bluetheme.TextSize = 20
  726. Bluetheme.TextWrapped = true
  727. Bluetheme.MouseButton1Down:connect(function()
  728. BackGround.BackgroundColor3 = Color3.fromRGB(0,34,255)
  729. KeyBindsMain.BackgroundColor3 = Color3.fromRGB(0,34,255)
  730. CreditsMain.BackgroundColor3 = Color3.fromRGB(0,34,255)
  731. end)
  732.  
  733. Autopickuptext.Name = "Auto pickup text"
  734. Autopickuptext.Parent = KeyBindsMain
  735. Autopickuptext.BackgroundColor3 = Color3.new(1, 1, 1)
  736. Autopickuptext.BackgroundTransparency = 1
  737. Autopickuptext.Position = UDim2.new(0.0437158458, 0, 0.661231875, 0)
  738. Autopickuptext.Size = UDim2.new(0.907103837, 0, 0.112318844, 0)
  739. Autopickuptext.ZIndex = 2
  740. Autopickuptext.Font = Enum.Font.SourceSansBold
  741. Autopickuptext.FontSize = Enum.FontSize.Size24
  742. Autopickuptext.Text = "AUTO PIPE"
  743. Autopickuptext.TextColor3 = Color3.new(1, 1, 1)
  744. Autopickuptext.TextSize = 20
  745. Autopickuptext.TextStrokeTransparency = 0
  746. Autopickuptext.TextWrapped = true
  747.  
  748. Dropallitemskeybindtextbox_2.Name = "Drop all items keybind textbox"
  749. Dropallitemskeybindtextbox_2.Parent = KeyBindsMain
  750. Dropallitemskeybindtextbox_2.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  751. Dropallitemskeybindtextbox_2.Position = UDim2.new(0.0409836061, 0, 0.773550689, 0)
  752. Dropallitemskeybindtextbox_2.Selectable = false
  753. Dropallitemskeybindtextbox_2.Size = UDim2.new(0, 166, 0, 23)
  754. Dropallitemskeybindtextbox_2.Font = Enum.Font.SourceSans
  755. Dropallitemskeybindtextbox_2.FontSize = Enum.FontSize.Size24
  756. Dropallitemskeybindtextbox_2.Text = "y"
  757. Dropallitemskeybindtextbox_2.TextColor3 = Color3.new(1, 1, 1)
  758. Dropallitemskeybindtextbox_2.TextScaled = true
  759. Dropallitemskeybindtextbox_2.TextSize = 20
  760. Dropallitemskeybindtextbox_2.TextWrapped = true
  761.  
  762. Speed.Name = "Speed"
  763. Speed.Parent = MainFrame
  764. Speed.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  765. Speed.BorderSizePixel = 0
  766. Speed.Position = UDim2.new(0.674904943, -350, 0.137681156, 25)
  767. Speed.Size = UDim2.new(0, 126, 0, 39)
  768. Speed.ZIndex = 2
  769. Speed.Font = Enum.Font.SourceSansBold
  770. Speed.FontSize = Enum.FontSize.Size28
  771. Speed.Text = "Speed"
  772. Speed.TextColor3 = Color3.new(1, 1, 1)
  773. Speed.TextSize = 25
  774. Speed.TextWrapped = true
  775.  
  776. local plr = game:GetService("Players").LocalPlayer
  777. local char = plr.Character
  778. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  779. local hum = char:FindFirstChild("HumanoidRootPart")
  780.  
  781. Speed.MouseButton1Down:connect(function()
  782. local plr = game:GetService("Players").LocalPlayer
  783. local char = plr.Character
  784. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  785. local hum = char:FindFirstChild("HumanoidRootPart")
  786. mouse.KeyDown:connect(function(key)
  787. if key == Speedkeybindtextbox.Text then
  788. loop = true
  789. while loop do
  790. hum.CFrame = hum.CFrame + hum.CFrame.lookVector * Changespeedtextbox.Text
  791. wait()
  792. end
  793. end
  794. end)
  795. end)
  796.  
  797. mouse.KeyUp:connect(function(key)
  798. if key == Speedkeybindtextbox.Text then
  799. loop = false
  800. end
  801. end)
  802.  
  803. TextButton.Name = "TextButton"
  804. TextButton.Parent = Speed
  805. TextButton.Active = true
  806. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  807. TextButton.BorderSizePixel = 0
  808. TextButton.Position = UDim2.new(0.0130000003, 0, 0.0500000007, 0)
  809. TextButton.Size = UDim2.new(1, 0, 1, 0)
  810.  
  811. CreditsMain.Name = "CreditsMain"
  812. CreditsMain.Parent = MainFrame
  813. CreditsMain.Active = true
  814. CreditsMain.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  815. CreditsMain.BackgroundTransparency = 0.20000000298023
  816. CreditsMain.BorderSizePixel = 0
  817. CreditsMain.Position = UDim2.new(1.02281368, 0, 0, 0)
  818. CreditsMain.Size = UDim2.new(0.347908735, 0, 1, 0)
  819.  
  820. Border_15.Name = "Border"
  821. Border_15.Parent = CreditsMain
  822. Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
  823. Border_15.BackgroundTransparency = 1
  824. Border_15.BorderSizePixel = 0
  825. Border_15.Position = UDim2.new(0, -12, 0, -12)
  826. Border_15.Size = UDim2.new(1.06557381, 0, 0, 12)
  827. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  828. Border_15.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  829. Border_15.ImageRectOffset = Vector2.new(12, 0)
  830. Border_15.ImageRectSize = Vector2.new(12, 12)
  831.  
  832. Border_16.Name = "Border"
  833. Border_16.Parent = CreditsMain
  834. Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
  835. Border_16.BackgroundTransparency = 1
  836. Border_16.BorderSizePixel = 0
  837. Border_16.Position = UDim2.new(0, -12, 0, 276)
  838. Border_16.Size = UDim2.new(1.06557381, 0, 0, 12)
  839. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  840. Border_16.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  841. Border_16.ImageRectOffset = Vector2.new(12, 0)
  842. Border_16.ImageRectSize = Vector2.new(12, 12)
  843.  
  844. Border_17.Name = "Border"
  845. Border_17.Parent = CreditsMain
  846. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  847. Border_17.BackgroundTransparency = 1
  848. Border_17.BorderSizePixel = 0
  849. Border_17.Position = UDim2.new(1, 0, 1, 0)
  850. Border_17.Size = UDim2.new(0, 12, 0, 12)
  851. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  852. Border_17.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  853. Border_17.ImageRectOffset = Vector2.new(24, 24)
  854. Border_17.ImageRectSize = Vector2.new(12, 12)
  855.  
  856. Border_18.Name = "Border"
  857. Border_18.Parent = CreditsMain
  858. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  859. Border_18.BackgroundTransparency = 1
  860. Border_18.BorderSizePixel = 0
  861. Border_18.Position = UDim2.new(1, 0, 0, -12)
  862. Border_18.Size = UDim2.new(0, 12, 0, 12)
  863. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  864. Border_18.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  865. Border_18.ImageRectOffset = Vector2.new(24, 0)
  866. Border_18.ImageRectSize = Vector2.new(12, 12)
  867.  
  868. Border_19.Name = "Border"
  869. Border_19.Parent = CreditsMain
  870. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  871. Border_19.BackgroundTransparency = 1
  872. Border_19.BorderSizePixel = 0
  873. Border_19.Position = UDim2.new(0, 183, 0, 0)
  874. Border_19.Size = UDim2.new(0, 12, 1, 0)
  875. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  876. Border_19.ImageColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  877. Border_19.ImageRectOffset = Vector2.new(0, 12)
  878. Border_19.ImageRectSize = Vector2.new(12, 12)
  879.  
  880. Speedchangetext.Name = "Speed change text"
  881. Speedchangetext.Parent = CreditsMain
  882. Speedchangetext.BackgroundColor3 = Color3.new(1, 1, 1)
  883. Speedchangetext.BackgroundTransparency = 1
  884. Speedchangetext.Position = UDim2.new(0.0983606577, 0, 0.612318814, 0)
  885. Speedchangetext.Size = UDim2.new(0.808743179, 0, 0.144927531, 0)
  886. Speedchangetext.ZIndex = 2
  887. Speedchangetext.Font = Enum.Font.SourceSansBold
  888. Speedchangetext.FontSize = Enum.FontSize.Size14
  889. Speedchangetext.Text = "Change speed number"
  890. Speedchangetext.TextColor3 = Color3.new(1, 1, 1)
  891. Speedchangetext.TextScaled = true
  892. Speedchangetext.TextSize = 14
  893. Speedchangetext.TextStrokeTransparency = 0
  894. Speedchangetext.TextWrapped = true
  895.  
  896. Changespeedtextbox.Name = "Change speed textbox"
  897. Changespeedtextbox.Parent = CreditsMain
  898. Changespeedtextbox.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  899. Changespeedtextbox.BackgroundTransparency = 0.60000002384186
  900. Changespeedtextbox.Position = UDim2.new(0.338454872, 0, 0.788043499, 0)
  901. Changespeedtextbox.Selectable = false
  902. Changespeedtextbox.Size = UDim2.new(0, 59, 0, 20)
  903. Changespeedtextbox.Font = Enum.Font.SourceSans
  904. Changespeedtextbox.FontSize = Enum.FontSize.Size14
  905. Changespeedtextbox.Text = "3"
  906. Changespeedtextbox.TextColor3 = Color3.new(1, 1, 1)
  907. Changespeedtextbox.TextSize = 14
  908. end)
  909.  
  910. addcmd('RadioGlitch','Invis Radio',nil,
  911. function(args)
  912. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" [Rares ]Play a code before using this, otherwise reset to change the code or redo this method!" ,"All")
  913. game.Players.LocalPlayer.Character.BoomBox.Server:Destroy()
  914. end)
  915.  
  916. addcmd('AnimGui','Animations!...',nil,
  917. function(args)
  918. -- Farewell Infortality.
  919. -- Version: 2.82
  920. -- Instances:
  921. local Rares = Instance.new("ScreenGui")
  922. local MainGui = Instance.new("Frame")
  923. local TextLabel = Instance.new("TextLabel")
  924. local Angelic = Instance.new("TextButton")
  925. local Plane = Instance.new("TextButton")
  926. local Dog = Instance.new("TextButton")
  927. local Backflip = Instance.new("TextButton")
  928. local Golem = Instance.new("TextButton")
  929. local Crazy = Instance.new("TextButton")
  930. local Close = Instance.new("TextButton")
  931. --Properties:
  932. Rares.Name = "Rares"
  933. Rares.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  934.  
  935. MainGui.Name = "MainGui"
  936. MainGui.Parent = Rares
  937. MainGui.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  938. MainGui.BorderSizePixel = 2
  939. MainGui.Position = UDim2.new(0.00518135633, 0, 0.674963474, 0)
  940. MainGui.Size = UDim2.new(0, 318, 0, 216)
  941.  
  942. TextLabel.Parent = MainGui
  943. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  944. TextLabel.Size = UDim2.new(0, 318, 0, 32)
  945. TextLabel.Font = Enum.Font.SciFi
  946. TextLabel.Text = "The Streets animations"
  947. TextLabel.TextColor3 = Color3.new(0.666667, 0, 1)
  948. TextLabel.TextSize = 20
  949.  
  950. Angelic.Name = "Angelic"
  951. Angelic.Parent = MainGui
  952. Angelic.BackgroundColor3 = Color3.new(0, 0, 0)
  953. Angelic.Position = UDim2.new(0.0345911942, 0, 0.25, 0)
  954. Angelic.Size = UDim2.new(0, 124, 0, 36)
  955. Angelic.Font = Enum.Font.Cartoon
  956. Angelic.Text = "Angelic"
  957. Angelic.TextColor3 = Color3.new(0.666667, 0, 1)
  958. Angelic.TextScaled = true
  959. Angelic.TextSize = 14
  960. Angelic.TextWrapped = true
  961.  
  962. Plane.Name = "Plane"
  963. Plane.Parent = MainGui
  964. Plane.BackgroundColor3 = Color3.new(0, 0, 0)
  965. Plane.Position = UDim2.new(0.0345911942, 0, 0.495370388, 0)
  966. Plane.Size = UDim2.new(0, 124, 0, 36)
  967. Plane.Font = Enum.Font.Cartoon
  968. Plane.Text = "Plane"
  969. Plane.TextColor3 = Color3.new(0.666667, 0, 1)
  970. Plane.TextScaled = true
  971. Plane.TextSize = 14
  972. Plane.TextWrapped = true
  973.  
  974. Dog.Name = "Dog"
  975. Dog.Parent = MainGui
  976. Dog.BackgroundColor3 = Color3.new(0, 0, 0)
  977. Dog.Position = UDim2.new(0.553459108, 0, 0.25, 0)
  978. Dog.Size = UDim2.new(0, 124, 0, 36)
  979. Dog.Font = Enum.Font.Cartoon
  980. Dog.Text = "Dog"
  981. Dog.TextColor3 = Color3.new(0.666667, 0, 1)
  982. Dog.TextScaled = true
  983. Dog.TextSize = 14
  984. Dog.TextWrapped = true
  985.  
  986. Backflip.Name = "Backflip"
  987. Backflip.Parent = MainGui
  988. Backflip.BackgroundColor3 = Color3.new(0, 0, 0)
  989. Backflip.Position = UDim2.new(0.553459108, 0, 0.495370388, 0)
  990. Backflip.Size = UDim2.new(0, 124, 0, 36)
  991. Backflip.Font = Enum.Font.Cartoon
  992. Backflip.Text = "Backflip"
  993. Backflip.TextColor3 = Color3.new(0.666667, 0, 1)
  994. Backflip.TextScaled = true
  995. Backflip.TextSize = 14
  996. Backflip.TextWrapped = true
  997.  
  998. Golem.Name = "Golem"
  999. Golem.Parent = MainGui
  1000. Golem.BackgroundColor3 = Color3.new(0, 0, 0)
  1001. Golem.Position = UDim2.new(0.034591198, 0, 0.740740776, 0)
  1002. Golem.Size = UDim2.new(0, 124, 0, 36)
  1003. Golem.Font = Enum.Font.Cartoon
  1004. Golem.Text = "Golem"
  1005. Golem.TextColor3 = Color3.new(0.666667, 0, 1)
  1006. Golem.TextScaled = true
  1007. Golem.TextSize = 14
  1008. Golem.TextWrapped = true
  1009.  
  1010. Crazy.Name = "Crazy"
  1011. Crazy.Parent = MainGui
  1012. Crazy.BackgroundColor3 = Color3.new(0, 0, 0)
  1013. Crazy.Position = UDim2.new(0.553459108, 0, 0.740740776, 0)
  1014. Crazy.Size = UDim2.new(0, 124, 0, 36)
  1015. Crazy.Font = Enum.Font.Cartoon
  1016. Crazy.Text = "Crazy"
  1017. Crazy.TextColor3 = Color3.new(0.666667, 0, 1)
  1018. Crazy.TextScaled = true
  1019. Crazy.TextSize = 14
  1020. Crazy.TextWrapped = true
  1021.  
  1022. Close.Name = "Close"
  1023. Close.Parent = MainGui
  1024. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  1025. Close.BackgroundTransparency = 1
  1026. Close.Position = UDim2.new(0.874213874, 0, 0, 0)
  1027. Close.Size = UDim2.new(0, 40, 0, 30)
  1028. Close.Font = Enum.Font.SciFi
  1029. Close.Text = "X"
  1030. Close.TextColor3 = Color3.new(0.666667, 0, 1)
  1031. Close.TextScaled = true
  1032. Close.TextSize = 14
  1033. Close.TextWrapped = true
  1034. -- Scripts:
  1035. function SCRIPT_DVPK89_FAKESCRIPT() -- Angelic.Angelic Script
  1036. getfenv().script = Instance.new('Script', Angelic)
  1037.  
  1038. script.Parent.MouseButton1Click:connect(function()
  1039. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://1316478145"
  1040. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1041. v.AnimationId = 'rbxassetid://451686028'
  1042. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  1043. v.AnimationId = 'rbxassetid://448026591'
  1044. end
  1045. end
  1046. end)
  1047.  
  1048. end
  1049. coroutine.resume(coroutine.create(SCRIPT_DVPK89_FAKESCRIPT))
  1050. function SCRIPT_KKFR69_FAKESCRIPT() -- Plane.Plane Script
  1051. getfenv().script = Instance.new('Script', Plane)
  1052.  
  1053. script.Parent.MouseButton1Click:connect(function()
  1054. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://1316487271"
  1055. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1056. v.AnimationId = 'rbxassetid://1316487271'
  1057. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  1058. v.AnimationId = 'rbxassetid://1316487271'
  1059. end
  1060. end
  1061. end)
  1062.  
  1063. end
  1064. coroutine.resume(coroutine.create(SCRIPT_KKFR69_FAKESCRIPT))
  1065. function SCRIPT_KDYZ67_FAKESCRIPT() -- Dog.Dog script
  1066. getfenv().script = Instance.new('Script', Dog)
  1067.  
  1068. script.Parent.MouseButton1Click:connect(function()
  1069. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://948444869"
  1070. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1071. v.AnimationId = 'rbxassetid://948442744'
  1072. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  1073. v.AnimationId = 'rbxassetid://948442744'
  1074. end
  1075. end
  1076. end)
  1077.  
  1078. end
  1079. coroutine.resume(coroutine.create(SCRIPT_KDYZ67_FAKESCRIPT))
  1080. function SCRIPT_PKLP75_FAKESCRIPT() -- Backflip.Backflip Script
  1081. getfenv().script = Instance.new('Script', Backflip)
  1082.  
  1083. script.Parent.MouseButton1Click:connect(function()
  1084. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1085. v.AnimationId = 'rbxassetid://229782914'
  1086. end
  1087. end)
  1088.  
  1089. end
  1090. coroutine.resume(coroutine.create(SCRIPT_PKLP75_FAKESCRIPT))
  1091. function SCRIPT_RBIY79_FAKESCRIPT() -- Golem.Golem Script
  1092. getfenv().script = Instance.new('Script', Golem)
  1093.  
  1094. script.Parent.MouseButton1Click:connect(function()
  1095. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.walk:GetChildren()) do
  1096. v.AnimationId = 'rbxassetid://553240602'
  1097. end
  1098. end)
  1099.  
  1100. end
  1101. coroutine.resume(coroutine.create(SCRIPT_RBIY79_FAKESCRIPT))
  1102. function SCRIPT_DSQX71_FAKESCRIPT() -- Crazy.Crazy Script
  1103. getfenv().script = Instance.new('Script', Crazy)
  1104.  
  1105. script.Parent.MouseButton1Click:connect(function()
  1106. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://299034008"
  1107. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1108. v.AnimationId = 'rbxassetid://299034268'
  1109. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  1110. v.AnimationId = 'rbxassetid://299033940'
  1111. end
  1112. end
  1113. end)
  1114.  
  1115. end
  1116. coroutine.resume(coroutine.create(SCRIPT_DSQX71_FAKESCRIPT))
  1117. function SCRIPT_QEAD75_FAKESCRIPT() -- Close.Script
  1118. getfenv().script = Instance.new('Script', Close)
  1119.  
  1120. script.Parent.MouseButton1Click:connect(function()
  1121. MainGui.Visible = false
  1122. end)
  1123.  
  1124. end
  1125. coroutine.resume(coroutine.create(SCRIPT_QEAD75_FAKESCRIPT))
  1126. end)
  1127.  
  1128. addcmd('ResetAnim','Animation..',nil,
  1129. function(args)
  1130. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://180426354"
  1131. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  1132. v.AnimationId = 'rbxassetid://125750702'
  1133. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  1134. v.AnimationId = 'rbxassetid://180435571'
  1135. end
  1136. end
  1137. end)
  1138.  
  1139. addcmd('CrtlDel','Crtl+click',nil,
  1140. function(args)
  1141. local Plr = game:GetService("Players").LocalPlayer
  1142. local Mouse = Plr:GetMouse()
  1143.  
  1144. Mouse.Button1Down:connect(function()
  1145. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  1146. if not Mouse.Target then return end
  1147. Mouse.Target:Destroy()
  1148. end)
  1149. end)
  1150.  
  1151. addcmd('view','view player',{},
  1152. function(args)
  1153. local players = getPlayer(args[1])
  1154. workspace.CurrentCamera.CameraSubject = game.Players[players[1]].Character
  1155. end)
  1156.  
  1157. addcmd('Cmds','view Cmds',{},
  1158. function(args)
  1159. local ScreenGui = Instance.new("ScreenGui")
  1160. local Commands = Instance.new("Frame")
  1161. local Cmds1 = Instance.new("TextLabel")
  1162. local exB = Instance.new("TextButton")
  1163. ScreenGui.Parent = game.CoreGui
  1164. Commands.Name = "Commands"
  1165. Commands.Parent = ScreenGui
  1166. Commands.BackgroundColor3 = Color3.new(1, 1, 1)
  1167. Commands.Position = UDim2.new(0.74848485, 0, 0.375137508, 0)
  1168. Commands.Size = UDim2.new(0, 214, 0, 286)
  1169. Cmds1.Name = "Cmds1"
  1170. Cmds1.Parent = Commands
  1171. Cmds1.BackgroundColor3 = Color3.new(0, 0, 0)
  1172. Cmds1.Size = UDim2.new(0, 213, 0, 286)
  1173. Cmds1.Font = Enum.Font.SourceSans
  1174. Cmds1.Text = "Prefix is [!]\n-- Commands\n\n--Animations\n!AnimGui - made by me..\n\n!ResetAnim - Resets your anims (DUMMY!)\n\n--Combat\n!Aspeed - Increases attack speed\n\n!SpeedGui - Opens the bypass GUI (Edited)\n\n--Misc\n!CtrlDel - Noclip in other words, press Crtl + left click\n\n!View - Useful for finding annoying shits\n\n!RadioGlitch - Uses Invis Radio (Play a code before using this command, reset to change it!)\n/n!Bypass - use with !speedGui "
  1175. Cmds1.TextColor3 = Color3.new(1, 1, 1)
  1176. Cmds1.TextScaled = true
  1177. Cmds1.TextSize = 14
  1178. Cmds1.TextWrapped = true
  1179. exB.Name = "exB"
  1180. exB.Parent = Commands
  1181. exB.BackgroundColor3 = Color3.new(1, 1, 1)
  1182. exB.BackgroundTransparency = 1
  1183. exB.Position = UDim2.new(0.724299073, 0, 0, 0)
  1184. exB.Size = UDim2.new(0, 59, 0, 50)
  1185. exB.Font = Enum.Font.SourceSans
  1186. exB.Text = "X"
  1187. exB.TextColor3 = Color3.new(1, 0, 0)
  1188. exB.TextScaled = true
  1189. exB.TextSize = 14
  1190. exB.TextWrapped = true
  1191. -- Scripts:
  1192. function SCRIPT_DJUO77_FAKESCRIPT() -- exB.exB1
  1193. getfenv().script = Instance.new('Script', exB)
  1194.  
  1195. script.Parent.MouseButton1Click:Connect(function()
  1196. Commands.Visible = false
  1197. end)
  1198.  
  1199. end
  1200. coroutine.resume(coroutine.create(SCRIPT_DJUO77_FAKESCRIPT))
  1201. end)
  1202.  
  1203. addcmd('Bypass','Ts Bypass',{},
  1204. function(args)
  1205. while true do
  1206. game.ReplicatedStorage.Name = 'RepStorage'
  1207. wait(0.5)
  1208. end
  1209. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement