Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.90 KB | None | 0 0
  1. blacklistedplaceids = {300883396, 317251128, 490843859}
  2. for i,v in pairs(blacklistedplaceids)do
  3. if game.PlaceId == v then
  4. script:Destroy()
  5. end
  6. end
  7. local function G(x)
  8. if not game:GetService(x)then return'Incorrect service!'end
  9. return game:GetService(x)
  10. end
  11. local _WL = false
  12. plr = G'Players'.LocalPlayer
  13. local AUTH = {
  14. ["Mudock Yatho"] = "coolman_1881", -- I might also add user id support soon too, but people might wanna use it on multi-accounts so we can also make it IP based/Hardware based???
  15. ["jurdy"] = "jurd10jc" -- change to username/password if u dont change people can find dis ok
  16. }
  17.  
  18. local Whitelist = Instance.new("ScreenGui", game:GetService'CoreGui')
  19. local Frame_ = Instance.new("Frame" ,Whitelist)
  20. Whitelist.Name = "Whitelist"
  21. Frame_.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  22. Frame_.Position = UDim2.new(0, 0, 0, 24)
  23. Frame_.Size = UDim2.new(0, 250, 0, 350)
  24.  
  25. local Title_ = Instance.new("TextLabel" ,Frame_)
  26. Title_.Name = "Title"
  27. Title_.BackgroundColor3 = Color3.new(1, 1, 1)
  28. Title_.BackgroundTransparency = 1
  29. Title_.BorderSizePixel = 0
  30. Title_.Position = UDim2.new(0.349999994, 0, 0, -5)
  31. Title_.Size = UDim2.new(0.263999999, 0, 0, 28)
  32. Title_.ZIndex = 2
  33. Title_.Font = Enum.Font.SourceSans
  34. Title_.FontSize = Enum.FontSize.Size24
  35. Title_.Text = "JurD"
  36. Title_.TextColor3 = Color3.new(1, 1, 1)
  37. Title_.TextSize = 24
  38. Title_.TextWrapped = true
  39.  
  40. local User = Instance.new("TextBox" ,Frame_)
  41. User.Name = "User"
  42. User.Parent = Frame_
  43. User.BackgroundColor3 = Color3.new(255, 255, 255)
  44. User.BorderColor3 = Color3.new(0, 0, 0)
  45. User.BorderSizePixel = 0
  46. User.Position = UDim2.new(0.0399999991, 0, 0.125, 0)
  47. User.Size = UDim2.new(1.09424853, 0, 0, 36)
  48. User.Font = Enum.Font.SourceSans
  49. User.FontSize = Enum.FontSize.Size14
  50. User.Text = "Username"
  51. User.TextColor3 = Color3.new(0, 0, 0)
  52. User.TextScaled = true
  53. User.TextSize = 14
  54. User.TextWrapped = true
  55.  
  56. local Enter_ = Instance.new("TextButton" ,Frame_)
  57. Enter_.Name = "Enter"
  58. Enter_.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  59. Enter_.BorderColor3 = Color3.new(0, 0, 0)
  60. Enter_.BorderSizePixel = 5
  61. Enter_.Position = UDim2.new(0.260535389, 0, 0, 249)
  62. Enter_.Size = UDim2.new(1.09424853, 0, 0, 40)
  63. Enter_.Font = Enum.Font.SourceSans
  64. Enter_.FontSize = Enum.FontSize.Size14
  65. Enter_.Text = "Enter"
  66. Enter_.TextColor3 = Color3.new(0, 0, 0)
  67. Enter_.TextScaled = true
  68. Enter_.TextSize = 14
  69. Enter_.TextWrapped = true
  70.  
  71. local Pass = User:Clone()
  72. Pass.Name = 'Pass'
  73. Pass.Position = UDim2.new(0.260535389, 0, 0, 173)
  74. Pass.Text = 'Password'
  75.  
  76. local function WL(u,p)
  77. if AUTH[User.Text]and AUTH[User.Text]==Pass.Text then
  78. return true
  79. end
  80. end
  81. Enter_.MouseButton1Down:connect(function()
  82. if WL()then
  83. Enter_.Text = 'Whitelisted!'
  84. wait(3)
  85. Whitelist:Destroy()
  86. _WL = true
  87. else
  88. Enter_.Text = 'Not whitelisted!'
  89. wait(3)
  90. Whitelist:Destroy()
  91. script:Destroy()
  92. end
  93. end)
  94. local function dap(x)
  95. for _,v in pairs(G'Players':GetPlayers())do
  96. if string.find(v.Name, x)then
  97. return v
  98. end
  99. end
  100. end
  101. local function _dap(x)
  102. for _,v in pairs(workspace:GetChildren())do
  103. if string.find(v.Name, x)and v:IsA'Model'and v:FindFirstChild'Humanoid'then
  104. return v
  105. end
  106. end
  107. end
  108. local function Get(x, w)
  109. if w == 'Char'then
  110. if workspace:FindFirstChild(x)then
  111. return workspace:WaitForChild(x)
  112. elseif G'Players':FindFirstChild(x)then
  113. repeat wait(.5)until G'Players':WaitForChild(x).Character
  114. return G'Players':WaitForChild(x).Character
  115. elseif _dap(x)then
  116. return _dap(x)
  117. elseif x == 'me'then
  118. if plr.Character then
  119. return plr.Character
  120. elseif workspace:FindFirstChild(plr.Name)then
  121. return workspace:WaitForChild(plr.Name)
  122. elseif _dap(x)then
  123. return _dap(x)
  124. end
  125. --[[elseif x == 'others'then
  126. local Q = {}
  127. for _,v in pairs(game:GetService'Players':GetPlayers())do
  128. if v ~= plr and v.Character then
  129. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  130. end
  131. end
  132. wait();return Q
  133. elseif x == 'all'then
  134. local Q = {}
  135. for _,v in pairs(game:GetService'Players':GetPlayers())do
  136. if v.Character then
  137. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  138. end
  139. end
  140. wait();return Q]]
  141. end
  142. elseif w == 'Player'then
  143. if game:GetService'Players':FindFirstChild(x)then
  144. return G'Players':WaitForChild(x)
  145. elseif workspace:FindFirstChild(x)and G'Players':GetPlayerFromCharacter(x)then
  146. return G'Players':GetPlayerFromCharacter(x)
  147. elseif dap(x)then
  148. return dap(x)
  149. elseif x == 'me'then
  150. return plr
  151. --[[elseif x == 'others'then
  152. local Q = {}
  153. for _,v in pairs(game:GetService'Players':GetPlayers())do
  154. if v ~= plr then
  155. local err,succ = pcall(function()table.insert(Q, v)end)
  156. end
  157. end
  158. wait();return Q
  159. elseif x == 'all'then
  160. local Q = {}
  161. for _,v in pairs(game:GetService'Players':GetPlayers())do
  162. local err,succ = pcall(function()table.insert(Q, v)end)
  163. end
  164. wait();return Q]]
  165. end
  166. end
  167. end
  168. repeat wait(.5)until _WL
  169. local Gui = Instance.new("ScreenGui", G'CoreGui')
  170. local Grab = Instance.new("Frame")
  171. local Body = Instance.new("Frame")
  172. local PlayerName = Instance.new("TextBox")
  173. local Hacker = Instance.new("TextButton")
  174. local Health = Instance.new("TextButton")
  175. local Page1 = Instance.new("TextButton")
  176. local Title = Instance.new("TextLabel")
  177. local Close = Instance.new("TextButton")
  178. Gui.Name = math.random()
  179. Grab.Name = "Grab"
  180. Grab.Parent = Gui
  181. Grab.Active = true
  182. Grab.BackgroundColor3 = Color3.new(0, 0, 0)
  183. Grab.BackgroundTransparency = 0.75
  184. Grab.BorderColor3 = Color3.new(0, 0, 0)
  185. Grab.BorderSizePixel = 0
  186. Grab.Draggable = true
  187. Grab.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
  188. Grab.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
  189.  
  190. Body.Name = "Body"
  191. Body.Parent = Grab
  192. Body.Active = true
  193. Body.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  194. Body.BorderSizePixel = 0
  195. Body.Position = UDim2.new(0, 0, 0, 24)
  196. Body.Size = UDim2.new(0, 250, 0, 350)
  197. Body.ZIndex = 2
  198.  
  199. PlayerName.Name = "PlayerName"
  200. PlayerName.Parent = Body
  201. PlayerName.BackgroundColor3 = Color3.new(1, 1, 1)
  202. PlayerName.BorderSizePixel = 0
  203. PlayerName.Position = UDim2.new(0.032097958, 0, 0, 20)
  204. PlayerName.Size = UDim2.new(0.449371427, 0, 0, 28)
  205. PlayerName.ZIndex = 2
  206. PlayerName.Font = Enum.Font.SourceSans
  207. PlayerName.FontSize = Enum.FontSize.Size14
  208. PlayerName.Text = "Player Name"
  209. PlayerName.TextScaled = true
  210. PlayerName.TextSize = 14
  211. PlayerName.TextWrapped = true
  212.  
  213. Hacker.Name = "Hacker"
  214. Hacker.Parent = Body
  215. Hacker.BackgroundColor3 = Color3.new(0, 0, 0)
  216. Hacker.BorderSizePixel = 0
  217. Hacker.Position = UDim2.new(0.368355215, 0, 0, 64)
  218. Hacker.Size = UDim2.new(0.272262543, 0, 0, 26)
  219. Hacker.ZIndex = 2
  220. Hacker.Font = Enum.Font.SourceSans
  221. Hacker.FontSize = Enum.FontSize.Size14
  222. Hacker.Text = "Hacker"
  223. Hacker.TextColor3 = Color3.new(1, 1, 1)
  224. Hacker.TextScaled = true
  225. Hacker.TextSize = 14
  226. Hacker.TextStrokeTransparency = 0
  227. Hacker.TextWrapped = true
  228.  
  229. local FF = Hacker:Clone()
  230. FF.Name = "FF"
  231. FF.Position = UDim2.new(0.672648609, 0, 0, 64)
  232. FF.Text = "FF"
  233.  
  234. local Duck = Hacker:Clone()
  235. Duck.Name = "Duck"
  236. Duck.Position = UDim2.new(0.0480463319, 0, 0, 104)
  237. Duck.Text = "Duck"
  238.  
  239. local Btools = Hacker:Clone()
  240. Btools.Name = "Btools"
  241. Btools.Position = UDim2.new(0.672648609, 0, 0, 104)
  242. Btools.Text = "BTools"
  243.  
  244. local Shrek = Hacker:Clone()
  245. Shrek.Name = "Shrek"
  246. Shrek.Position = UDim2.new(0.0480463319, 0, 0, 148)
  247. Shrek.Text = "Shrek"
  248.  
  249. local Invisible = Hacker:Clone()
  250. Invisible.Name = "Invisible"
  251. Invisible.Position = UDim2.new(0.368355215, 0, 0, 148)
  252. Invisible.Text = "Invisible"
  253.  
  254. local Visible = Hacker:Clone()
  255. Visible.Name = "Visible"
  256. Visible.Position = UDim2.new(0.672648609, 0, 0, 148)
  257. Visible.Text = "Visible"
  258.  
  259. local Kill = Hacker:Clone()
  260. Kill.Name = "Kill"
  261. Kill.Position = UDim2.new(0.0480463319, 0, 0, 192)
  262. Kill.Text = "Kill"
  263.  
  264. local Crash = Hacker:Clone()
  265. Crash.Name = "Crash"
  266. Crash.Position = UDim2.new(0.368355215, 0, 0, 192)
  267. Crash.Text = "Crash"
  268.  
  269. local Punish = Hacker:Clone()
  270. Punish.Name = "Punish"
  271. Punish.Position = UDim2.new(0.672648609, 0, 0, 192)
  272. Punish.Text = "Punish"
  273.  
  274. local MLG = Hacker:Clone()
  275. MLG.Name = "MLG"
  276. MLG.Position = UDim2.new(0.0480463319, 0, 0, 236)
  277. MLG.Text = "MLG"
  278.  
  279. local Goto = Hacker:Clone()
  280. Goto.Name = "Goto"
  281. Goto.Position = UDim2.new(0.368355215, 0, 0, 236)
  282. Goto.Text = "Goto"
  283.  
  284. local Bring = Hacker:Clone()
  285. Bring.Name = "Bring"
  286. Bring.Position = UDim2.new(0.672648609, 0, 0, 236)
  287. Bring.Text = "Bring"
  288.  
  289. local Unpunish = Hacker:Clone()
  290. Unpunish.Name = "Bring"
  291. Unpunish.Position = UDim2.new(0.368355215, 0, 0, 284)
  292. Unpunish.Text = "Bring"
  293.  
  294. local God = Hacker:Clone()
  295. God.Name = "God"
  296. God.Position = UDim2.new(0.0480463319, 0, 0, 64)
  297. God.Text = "God"
  298.  
  299. local Dong = Hacker:Clone()
  300. Dong.Name = "Dong"
  301. Dong.Position = UDim2.new(0.368355215, 0, 0, 104)
  302. Dong.Text = "Dong"
  303.  
  304. local Famous = Hacker:Clone()
  305. Famous.Name = "Famous"
  306. Famous.Position = UDim2.new(0.674057126, 0, 0, 284)
  307. Famous.Text = "Famous"
  308.  
  309. local Keemstar = Hacker:Clone()
  310. Keemstar.Name = "Famous"
  311. Keemstar.Position = UDim2.new(0.048146937, 0, 0, 284)
  312. Keemstar.Text = "Famous"
  313.  
  314. local ValueBox = PlayerName:Clone()
  315. ValueBox.Name = "ValueBox"
  316. ValueBox.Position = UDim2.new(0.513567328, 0, 0, 20)
  317. ValueBox.Text = "Value"
  318.  
  319. Page1.Name = "Page1"
  320. Page1.Parent = Body
  321. Page1.BackgroundColor3 = Color3.new(0, 0, 0)
  322. Page1.BorderSizePixel = 0
  323. Page1.Position = UDim2.new(0, 0, 0, 349)
  324. Page1.Size = UDim2.new(0.328334004, 0, 0, 20)
  325. Page1.ZIndex = 2
  326. Page1.Font = Enum.Font.SourceSans
  327. Page1.FontSize = Enum.FontSize.Size14
  328. Page1.Text = "Page 1"
  329. Page1.TextColor3 = Color3.new(1, 1, 1)
  330. Page1.TextScaled = true
  331. Page1.TextSize = 14
  332. Page1.TextStrokeTransparency = 0
  333. Page1.TextWrapped = true
  334.  
  335. local Page2 = Page1:Clone()
  336. Page2.Name = "Page2"
  337. Page2.Position = UDim2.new(0.336342156, 0, 0, 349)
  338. Page2.Text = "Page 2"
  339.  
  340. local Page3 = Page1:Clone()
  341. Page3.Name = "Page3"
  342. Page3.Position = UDim2.new(0.672684312, 0, 0, 349)
  343. Page3.Text = "Page 3"
  344.  
  345. Health.Name = "Health"
  346. Health.Parent = Body
  347. Health.BackgroundColor3 = Color3.new(0, 0, 0)
  348. Health.BorderSizePixel = 0
  349. Health.Position = UDim2.new(0.0480000004, 0, 0.914285719, 0)
  350. Health.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  351. Health.ZIndex = 2
  352. Health.Font = Enum.Font.SourceSans
  353. Health.FontSize = Enum.FontSize.Size14
  354. Health.Text = "MaxHealth"
  355. Health.TextColor3 = Color3.new(1, 1, 1)
  356. Health.TextScaled = true
  357. Health.TextSize = 14
  358. Health.TextStrokeTransparency = 0
  359. Health.TextWrapped = true
  360.  
  361. local SCrash = Health:Clone()
  362. SCrash.Name = "SCrash"
  363. SCrash.Position = UDim2.new(0.379999995, 0, 0.920000017, 0)
  364. SCrash.Text = "SCrash"
  365.  
  366. local UnFF = Health:Clone()
  367. UnFF.Name = "UnFF"
  368. UnFF.Position = UDim2.new(0.671999991, 0, 0.922857165, 0)
  369. UnFF.Text = "UnFF"
  370.  
  371. Title.Name = "Title"
  372. Title.Parent = Grab
  373. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  374. Title.BackgroundTransparency = 1
  375. Title.BorderSizePixel = 0
  376. Title.Position = UDim2.new(0.349999994, 0, 0, -5)
  377. Title.Size = UDim2.new(0.263999999, 0, 0, 28)
  378. Title.ZIndex = 2
  379. Title.Font = Enum.Font.SourceSans
  380. Title.FontSize = Enum.FontSize.Size24
  381. Title.Text = "JurD"
  382. Title.TextColor3 = Color3.new(1, 1, 1)
  383. Title.TextSize = 24
  384. Title.TextWrapped = true
  385.  
  386. Close.Name = "Close"
  387. Close.Parent = Title
  388. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  389. Close.BorderSizePixel = 0
  390. Close.Position = UDim2.new(2.5, 0, 0.300000012, 0)
  391. Close.Size = UDim2.new(0, 20, 0, 20)
  392. Close.ZIndex = 2
  393. Close.Font = Enum.Font.SourceSans
  394. Close.FontSize = Enum.FontSize.Size42
  395. Close.Text = "-"
  396. Close.TextColor3 = Color3.new(0, 0, 0)
  397. Close.TextSize = 42
  398. Close.TextWrapped = true
  399. --[[Page1.MouseButton1Down:connect(function()
  400. end)]]
  401. Page2.MouseButton1Down:connect(function()
  402. local Gui = Instance.new("ScreenGui" , G'CoreGui')
  403. Gui.RobloxLocked = true
  404. Gui.Name = math.random()
  405. local Pull = Instance.new("Frame" ,Gui)
  406. Pull.Name = "Grab"
  407. Pull.Active = true
  408. Pull.BackgroundColor3 = Color3.new(0, 0, 0)
  409. Pull.BackgroundTransparency = 0
  410. Pull.BorderSizePixel = 0
  411. Pull.Position = UDim2.new(0.2, 0, 0, 164)
  412. Pull.Size = UDim2.new(0.157, 0, 0, 24)
  413. Pull.Draggable = true
  414. local Close_ = Instance.new("TextButton" ,Pull)
  415. Close_.Name = "Close"
  416. Close_.BackgroundColor3 = Color3.new(1, 1, 1)
  417. Close_.BackgroundTransparency = 1
  418. Close_.BorderSizePixel = 0
  419. Close_.Position = UDim2.new(0.904999971, 0, 0, -10)
  420. Close_.Size = UDim2.new(0, 20, 0, 20)
  421. Close_.ZIndex = 2
  422. Close_.Font = Enum.Font.SourceSans
  423. Close_.FontSize = Enum.FontSize.Size24
  424. Close_.Text = "-"
  425. Close_.TextColor3 = Color3.new(1, 1, 1)
  426. Close_.TextSize = 24
  427. local Body = Instance.new("Frame" ,Pull)
  428. Body.Name = "Body"
  429. Body.Active = true
  430. Body.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  431. Pull.BackgroundTransparency = 0.8
  432. Body.BorderSizePixel = 0
  433. Body.Position = UDim2.new(0, 0, 0, 24)
  434. Body.Size = UDim2.new(0, 250, 0, 350)
  435. Body.ZIndex = 2
  436. local Title = Instance.new("TextLabel" ,Pull)
  437. Title.Name = "Title"
  438. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  439. Title.BackgroundTransparency = 1
  440. Title.BorderSizePixel = 0
  441. Title.Position = UDim2.new(0.349999994, 0, 0, -5)
  442. Title.Size = UDim2.new(0.263999999, 0, 0, 28)
  443. Title.ZIndex = 2
  444. Title.Font = Enum.Font.SourceSans
  445. Title.FontSize = Enum.FontSize.Size24
  446. Title.Text = "Apoc CMDS"
  447. Title.TextColor3 = Color3.new(1, 1, 1)
  448. Title.TextSize = 24
  449. local PlayerName = Instance.new("TextBox" ,Body)
  450. PlayerName.Name = "PlayerName"
  451. PlayerName.BackgroundColor3 = Color3.new(1, 1, 1)
  452. PlayerName.BorderSizePixel = 0
  453. PlayerName.Position = UDim2.new(0.032097958, 0, 0, 20)
  454. PlayerName.Size = UDim2.new(0.449371427, 0, 0, 28)
  455. PlayerName.ZIndex = 2
  456. PlayerName.Font = Enum.Font.SourceSans
  457. PlayerName.FontSize = Enum.FontSize.Size14
  458. PlayerName.Text = "Player Name"
  459. PlayerName.TextSize = 14
  460. PlayerName.TextWrapped = true
  461. local Semigod = Instance.new("TextButton" ,Body)
  462. Semigod.Name = "Semigod"
  463. Semigod.BackgroundColor3 = Color3.new(0, 0, 0)
  464. Semigod.BorderSizePixel = 0
  465. Semigod.Position = UDim2.new(0.368355215, 0, 0, 64)
  466. Semigod.Size = UDim2.new(0.272262543, 0, 0, 26)
  467. Semigod.ZIndex = 2
  468. Semigod.Font = Enum.Font.SourceSans
  469. Semigod.FontSize = Enum.FontSize.Size14
  470. Semigod.Text = "God"
  471. Semigod.TextColor3 = Color3.new(1, 1, 1)
  472. Semigod.TextSize = 14
  473. Semigod.TextStrokeTransparency = 0
  474. local KillAll = Semigod:Clone()
  475. KillAll.Name = 'KillAll'
  476. KillAll.Parent = Body
  477. KillAll.Position = UDim2.new(0.672648609, 0, 0, 64)
  478. KillAll.Text = 'Kill All'
  479. local KillPlr = Semigod:Clone()
  480. KillPlr.Name = 'KillPlr'
  481. KillPlr.Parent = Body
  482. KillPlr.Position = UDim2.new(0.0480463319, 0, 0, 104)
  483. KillPlr.Text = 'Kill'
  484. local Bring = Semigod:Clone()
  485. Bring.Name = 'Bring'
  486. Bring.Parent = Body
  487. Bring.Position = UDim2.new(0.672648609, 0, 0, 104)
  488. Bring.Text = 'Bring'
  489. local Goto2 = God:Clone()
  490. Goto2.Name = 'Goto'
  491. Goto2.Parent = Body
  492. Goto2.Position = UDim2.new(0.0480463319, 0, 0, 148)
  493. Goto2.Text = 'Goto'
  494. local TpAllMe = Semigod:Clone()
  495. TpAllMe.Name = 'TpAllMe'
  496. TpAllMe.Parent = Body
  497. TpAllMe.Position = UDim2.new(0.0480463319, 0, 0, 148)
  498. TpAllMe.Text = 'Bring All'
  499. local GiveBadges = Semigod:Clone()
  500. GiveBadges.Name = 'GiveBadges'
  501. GiveBadges.Parent = Body
  502. GiveBadges.Position = UDim2.new(0.368355215, 0, 0, 148)
  503. GiveBadges.Text = 'Give Badges'
  504. local FALKIT = Semigod:Clone()
  505. FALKIT.Name = 'SpawnFal'
  506. FALKIT.Parent = Body
  507. FALKIT.Position = UDim2.new(0.672648609, 0, 0, 148)
  508. FALKIT.Text = 'Fal Kit'
  509. local HungerThirst = God:Clone()
  510. HungerThirst.Name = 'HT'
  511. HungerThirst.Parent = Body
  512. HungerThirst.Position = UDim2.new(0.0480463319, 0, 0, 192)
  513. HungerThirst.Text = 'Hunger Thirst'
  514. local Valbox2 = PlayerName:Clone()
  515. Valbox2.Name = 'ValueBox'
  516. Valbox2.Parent = Body
  517. Valbox2.Position = UDim2.new(0.513567328, 0, 0, 20)
  518. Valbox2.Size= UDim2.new(0.465420425, 0, 0, 28)
  519. Valbox2.Text = 'Value'
  520. Semigod.MouseButton1Down:connect(function()
  521. local P = Get(PlayerName.Text,'Char')
  522. while wait(.25)do
  523. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(P:WaitForChild'Humanoid', 420699001)
  524. end
  525. end)
  526. -- =====================================================================
  527. KillAll.MouseButton1Down:connect(function()
  528. for i,v in pairs(G'Players':GetPlayers())do
  529. repeat wait(.5)until v.Character
  530. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(v.Character:WaitForChild'Humanoid', -420699001)
  531. end
  532. end)
  533. -- =====================================================================
  534. KillPlr.MouseButton1Down:connect(function()
  535. local P = Get(PlayerName.Text,'Char')
  536. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(P:WaitForChild'Humanoid', -420699001)
  537. end)
  538. -- =====================================================================
  539. Bring.MouseButton1Down:connect(function()
  540. local P = Get(PlayerName.Text,'Player')
  541. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("To Me", math.floor(tick() % 1 * 100000), P)
  542. end)
  543. -- =====================================================================
  544. Goto2.MouseButton1Down:connect(function()
  545. local P = Get(PlayerName.Text,'Player')
  546. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("Me To", math.floor(tick() % 1 * 100000), P)
  547. end)
  548. -- =====================================================================
  549. TpAllMe.MouseButton1Down:connect(function()
  550. for i,v in pairs(G'Players':GetPlayers())do
  551. if v ~= plr then
  552. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("To Me", math.floor(tick() % 1 * 100000), v.Name)
  553. end
  554. end
  555. end)
  556. -- =====================================================================
  557. GiveBadges.MouseButton1Down:connect(function()
  558. local ps = plr:WaitForChild'playerstats'
  559. ps:WaitForChild'PlayerKill':WaitForChild'Defensive'.Value = 75
  560. ps:WaitForChild'ZombieKill':WaitForChild'Military'.Value = 751
  561. ps:WaitForChild'Days'.Value = 30
  562. end)
  563. -- =====================================================================
  564. Close_.MouseButton1Down:connect(function()
  565. if Body.Visible then
  566. Close.Text = "+"
  567. Body.Visible = false
  568. else
  569. Close.Text = "-"
  570. Body.Visible = true
  571. end
  572. end)
  573. -- =====================================================================
  574. FALKIT.MouseButton1Down:connect(function()
  575. local AO = G'Lighting':WaitForChild'Remote':WaitForChild'AddObject'
  576. local Pl = Get(PlayerName.Text,'Player'):WaitForChild'playerstats':WaitForChild'slots'
  577. AO:FireServer(Pl:WaitForChild'slotbackpack', 4016)
  578. wait(.1)
  579. AO:FireServer(Pl:WaitForChild'slotprimary', 1029)
  580. wait(.1)
  581. AO:FireServer(Pl:WaitForChild'slot1', 9013)
  582. wait(.1)
  583. AO:FireServer(Pl:WaitForChild'slot2', 9010)
  584. wait(.1)
  585. AO:FireServer(Pl:WaitForChild'slot3', 9005)
  586. wait(.1)
  587. for i = 3,10 do
  588. AO:FireServer(Pl:WaitForChild'slot'..i+1, 64)
  589. end
  590. wait(.1)
  591. for i = 11,19 do
  592. AO:FireServer(Pl:WaitForChild'slot'..i+1, 11)
  593. end
  594. wait(.1)
  595. warn'Objects spawned successfully!'
  596. end)
  597. end)
  598. Crash.MouseButton1Down:connect(function()
  599. local P = Get(PlayerName.Text,'Char'):WaitForChild'Humanoid'
  600. P.HipHeight = 1 * 0/0
  601. end)
  602. Kill.MouseButton1Down:connect(function()
  603. local P = Get(PlayerName.Text,'Char'):BreakJoints()
  604. end)
  605. God.MouseButton1Down:connect(function()
  606. local P = Get(PlayerName.Text,'Char'):WaitForChild'Humanoid'
  607. P.MaxHealth = math.huge
  608. end)
  609. Bring.MouseButton1Down:connect(function()
  610. repeat wait(.5)until plr.Character
  611. local P = plr.Character:WaitForChild'Torso'.Position + Vector3.new(0,10,0)
  612. Get(PlayerName.Text,'Char'):MoveTo(P)
  613. end)
  614. Goto.MouseButton1Down:connect(function()
  615. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'.Position + Vector3.new(0,10,0)
  616. repeat wait(.5)until plr.Character
  617. plr.Character:MoveTo(P)
  618. end)
  619. Keemstar.MouseButton1Down:connect(function()
  620. local p = Get(PlayerName.Text,'Char')
  621. local weld = Instance.new("Weld",p:WaitForChild'Torso')
  622. weld.Part0 = p.Torso
  623. local Harambe = Instance.new("Part",p:WaitForChild'Torso')
  624. Harambe.Anchored = true
  625. Harambe.CanCollide = false
  626. Harambe.Size = Vector3.new(3,2,6)
  627. Harambe.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  628. weld.Part1 = Harambe
  629. weld.C1 = CFrame.new(0,-2,0) * CFrame.Angles(0,math.rad(270),0)
  630. Harambe.Anchored = false
  631. local HarambeMesh = Instance.new("SpecialMesh",Harambe)
  632. HarambeMesh.MeshType = Enum.MeshType.FileMesh
  633. HarambeMesh.Scale = Vector3.new(1,1,1)
  634. HarambeMesh.MeshId = "rbxassetid://471652548"
  635. HarambeMesh.TextureId = "rbxassetid://471652580"
  636. local weld2 = Instance.new("Weld",p:WaitForChild'Torso')
  637. weld2.Part0 = p.Torso
  638. local Smoke = Instance.new("Part",p:WaitForChild'Torso')
  639. Smoke.Anchored = true
  640. Smoke.CanCollide = false
  641. Smoke.Size = Vector3.new(0.2,1.8,0.2)
  642. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  643. weld2.Part1 = Smoke
  644. weld2.C1 = CFrame.new(0,-3,0) * CFrame.Angles(math.rad(270),0,0)
  645. Smoke.Anchored = false
  646. Smoke.Transparency = 1;
  647. local Particle = Instance.new("ParticleEmitter",Smoke)
  648. Particle.Rate = 666;
  649. Particle.Speed = NumberRange.new(5,10);
  650. Particle.Lifetime = NumberRange.new(0.5,1);
  651. local A = {NumberSequenceKeypoint.new(0, 0, 0),NumberSequenceKeypoint.new(1, 1, 0)}
  652. local B = {NumberSequenceKeypoint.new(0, 1, 0),NumberSequenceKeypoint.new(1, 0, 0)}
  653. Particle.Transparency = NumberSequence.new(A);
  654. Particle.Size = NumberSequence.new(A);
  655. Particle.Color = ColorSequence.new(Color3.new(85/255,1,0),Color3.new(85/255,1,0))
  656. Particle.Rotation = NumberRange.new(-360, 360)
  657. Particle.VelocitySpread = 10;
  658. Particle.Texture = "rbxassetid://133619974"
  659. p:WaitForChild'Humanoid'.WalkSpeed = 50;
  660. for i,v in pairs(p:GetChildren())do
  661. if v:IsA"Part"then
  662. v.Transparency = 1;
  663. elseif v:IsA"Hat"or v:IsA'Model'then
  664. v:Destroy()
  665. end
  666. end
  667. p.Head.face:Destroy()
  668. local function SFX(id)local s=Instance.new("Sound",p:WaitForChild'Torso');s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  669. Harambe.Touched:connect(function(z)
  670. if z.Parent and z.Parent:FindFirstChild'Humanoid'and not z.Parent.Name ~= plr.Name then
  671. G'Players':WaitForChild(z.Parent.Name).Character:BreakJoints()
  672. local Fart = SFX(131314452)
  673. Fart:Play()
  674. end
  675. end)
  676. local Music = SFX(433992205)
  677. Music.Looped = true
  678. wait()
  679. Music:Play()
  680. end)
  681. Duck.MouseButton1Down:connect(function()
  682. local m1 = Instance.new("SpecialMesh", Get(PlayerName.Text,'Char'):WaitForChild'Torso')
  683. m1.MeshType = "FileMesh"
  684. m1.TextureId = "http://www.roblox.com/asset/?id=9419827"
  685. m1.MeshId = "http://www.roblox.com/asset/?id=9419831"
  686. m1.Scale = Vector3.new(6, 6, 6)
  687. local P = Get(PlayerName.Text,'Char')
  688. local err,succ = pcall(function()for _,v in pairs(P:GetChildren())do if not v:IsA'Script'and not v:IsA'Humanoid'and not v:IsA'LocalScript'and not v:IsA'Model'then v.Transparency = 1 end end end)
  689. local err,succ = pcall(function()P.Head.face:Destroy()end)
  690. local err,succ = pcall(function()P:WaitForChild'Torso'.Transparency = 0 end)
  691. end)
  692. Hacker.MouseButton1Down:connect(function()
  693. local bill = Instance.new("BillboardGui", Get(PlayerName.Text,'Char'):WaitForChild'Head')
  694. bill.Size = UDim2.new(4, 0, 4.5, 0)
  695. bill.AlwaysOnTop = true
  696. local label = Instance.new("TextLabel", bill)
  697. label.Size = UDim2.new(2, 0, 1, 0)
  698. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  699. label.BackgroundTransparency = 1
  700. label.FontSize = "Size48"
  701. label.TextColor3 = Color3.new(0,0,0)
  702. label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  703. label.TextStrokeTransparency = 1
  704. label.Text = "Hacker"
  705. end)
  706. Punish.MouseButton1Down:connect(function()
  707. Get(PlayerName.Text,'Char').Parent = G'ReplicatedStorage'
  708. end)
  709. Unpunish.MouseButton1Down:connect(function()
  710. Get(PlayerName.Text,'Char').Parent = workspace
  711. Get(PlayerName.Text,'Char'):MakeJoints()
  712. end)
  713. Famous.MouseButton1Down:connect(function()
  714. game:GetService"RunService":BindToRenderStep("ew",0,function()
  715. for i,v in pairs(game:GetService'Players':GetPlayers())do
  716. repeat wait(.5)until v.Character
  717. v.Character:WaitForChild'Humanoid':MoveTo(Get(PlayerName.Text,'Char'):WaitForChild'Head'.Position)
  718. end
  719. end)
  720. end)
  721. Btools.MouseButton1Down:connect(function()
  722. local P = Get(PlayerName.Text,'Player')
  723. local a,b,c = Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack')
  724. a.BinType = 2
  725. b.BinType = 3
  726. c.BinType = 4
  727. end)
  728. FF.MouseButton1Down:connect(function()
  729. Instance.new("ForceField", Get(PlayerName.Text,'Char'))
  730. end)
  731. MLG.MouseButton1Down:connect(function()
  732. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  733. local pe = Instance.new("ParticleEmitter", P)
  734. pe.Texture = "http://www.roblox.com/asset/?id=8979672"
  735. pe.VelocitySpread = 50
  736. local se = Instance.new("ParticleEmitter", P)
  737. se.Texture = "http://www.roblox.com/asset/?id=176067516"
  738. se.VelocitySpread = 50
  739. local fe = Instance.new("ParticleEmitter", P)
  740. fe.Texture = "http://www.roblox.com/asset/?id=179012130"
  741. fe.VelocitySpread = 50
  742. end)
  743. Dong.MouseButton1Down:connect(function()
  744. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  745. local stick = Instance.new("Part", P)
  746. local c = Instance.new("CylinderMesh", stick)
  747. stick.Size = Vector3.new(2,8.2,2)
  748. stick.BrickColor = BrickColor.new("Pastel brown")
  749. stick.BottomSurface = "Smooth"
  750. stick.TopSurface = "Smooth"
  751. stick.Position = P.Position
  752. local wstick = Instance.new("Weld", P)
  753. wstick.Part0 = wstick.Parent
  754. wstick.Part1 = stick
  755. wstick.C1 = CFrame.new(Vector3.new(0,3.5,-1.5)) * CFrame.Angles(80,0,0)
  756. local ball1 = Instance.new("Part", P)
  757. ball1.BrickColor = stick.BrickColor
  758. ball1.Shape = "Ball"
  759. ball1.Size = Vector3.new(3,3,3)
  760. local wb1 = Instance.new("Weld", P)
  761. wb1.Part0 = wstick.Part0
  762. wb1.Part1 = ball1
  763. ball1.BottomSurface = "Smooth"
  764. ball1.TopSurface = "Smooth"
  765. wb1.C1 = CFrame.new(Vector3.new(-0.5,1.5,0))
  766. local ball2 = ball1:clone()
  767. ball2.Parent = P
  768. local wb2 = Instance.new("Weld", P)
  769. wb2.Part0 = wstick.Part0
  770. wb2.Part1 = ball2
  771. wb2.C1 = CFrame.new(Vector3.new(0.5,1.5,0))
  772. end)
  773. Invisible.MouseButton1Down:connect(function()
  774. local P = Get(PlayerName.Text,'Char')
  775. for _,v in pairs(P:GetChildren())do
  776. if v:IsA'Part'or v:IsA'UnionOperation'then
  777. local err,succ = pcall(function()v.Transparency = 1 end)
  778. end
  779. end
  780. local err,succ = pcall(function()P.Head.face:Destroy()end)
  781. end)
  782. Visible.MouseButton1Down:connect(function()
  783. local P = Get(PlayerName.Text,'Char')
  784. for _,v in pairs(P:GetChildren())do
  785. if v:IsA'Part'or v:IsA'UnionOperation'then
  786. local err,succ = pcall(function()v.Transparency = 0 end)
  787. end
  788. end
  789. local err,succ = pcall(function()P.HumanoidRootPart.Transparency = 1 end)
  790. end)
  791. Health.MouseButton1Down:connect(function()
  792. local P = Get(PlayerName.Text,'Char')
  793. P:WaitForChild'Humanoid'.MaxHealth = ValueBox
  794. wait()
  795. P:WaitForChild'Humanoid'.Health = ValueBox
  796. end)
  797. SCrash.MouseButton1Down:connect(function()
  798. workspace.Gravity = 0/0
  799. end)
  800. UnFF.MouseButton1Down:connect(function()
  801. local P = Get(PlayerName.Text,'Char')
  802. for _,v in pairs(P:GetChildren())do
  803. if v:IsA'ForceField'then
  804. v:Destroy()
  805. end
  806. end
  807. end)
  808. Close.MouseButton1Down:connect(function()
  809. if Body.Visible then
  810. Close.Text = "+"
  811. Body.Visible = false
  812. else
  813. Close.Text = "-"
  814. Body.Visible = true
  815. end
  816. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement