Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. script.RobloxLocked = true
  2. script.Archivable = false
  3. script.Name = '1______ae1'
  4. blacklistedplaceids = {300883396, 317251128, 490843859}
  5. for i,v in pairs(blacklistedplaceids)do
  6. if game.PlaceId == v then
  7. script:Destroy()
  8. end
  9. end
  10. local function G(x)
  11. if not game:GetService(x)then return'Incorrect service!'end
  12. return game:GetService(x)
  13. end
  14. local _WL = false
  15. plr = G'Players'.LocalPlayer
  16. local AUTH = {
  17. ["NatsuiDragonSlayer"] = "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???
  18. ["NatsuiDragonslayer"] = "PASSWORD EHRHERHERHE" -- change to username/password if u dont change people can find dis ok
  19. }
  20. local Whitelist = Instance.new("ScreenGui", game:GetService'CoreGui')
  21. local Frame_ = Instance.new("Frame")
  22. local Title_ = Instance.new("TextLabel")
  23. local User = Instance.new("TextBox")
  24. local Enter_ = Instance.new("TextButton")
  25. local Pass = Instance.new("TextBox")
  26. Whitelist.Name = "Whitelist"
  27. Frame_.Parent = Whitelist
  28. Frame_.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  29. Frame_.Position = UDim2.new(0.236153841, 0, 0.262039661, 0)
  30. Frame_.Size = UDim2.new(0.512307703, 0, 0.393767715, 0)
  31. Title_.Name = "Title"
  32. Title_.Parent = Frame_
  33. Title_.BackgroundColor3 = Color3.new(0.490196, 0.490196, 0.490196)
  34. Title_.BackgroundTransparency = 0.44999998807907
  35. Title_.BorderSizePixel = 0
  36. Title_.Position = UDim2.new(0.00300300308, 0, -0.115107916, 0)
  37. Title_.Size = UDim2.new(1, 0, 0.111510791, 0)
  38. Title_.ZIndex = 2
  39. Title_.Font = Enum.Font.SourceSans
  40. Title_.FontSize = Enum.FontSize.Size24
  41. Title_.Text = "JurD"
  42. Title_.TextColor3 = Color3.new(1, 1, 1)
  43. Title_.TextSize = 24
  44. Title_.TextWrapped = true
  45. User.Name = "User"
  46. User.Parent = Frame_
  47. User.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  48. User.BorderColor3 = Color3.new(0, 0, 0)
  49. User.BorderSizePixel = 5
  50. User.Position = UDim2.new(0.0399999991, 0, 0.125, 0)
  51. User.Size = UDim2.new(0.925000012, 0, 0.25, 0)
  52. User.Font = Enum.Font.SourceSans
  53. User.FontSize = Enum.FontSize.Size14
  54. User.Text = "Username"
  55. User.TextColor3 = Color3.new(0, 0, 0)
  56. User.TextScaled = true
  57. User.TextSize = 14
  58. User.TextWrapped = true
  59. Enter_.Name = "Enter"
  60. Enter_.Parent = Frame_
  61. Enter_.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  62. Enter_.BorderColor3 = Color3.new(0, 0, 0)
  63. Enter_.BorderSizePixel = 5
  64. Enter_.Position = UDim2.new(0.200000003, 0, 0.850000024, 0)
  65. Enter_.Size = UDim2.new(0.581081092, 0, 0.115107916, 0)
  66. Enter_.Font = Enum.Font.SourceSans
  67. Enter_.FontSize = Enum.FontSize.Size14
  68. Enter_.Text = "Enter"
  69. Enter_.TextColor3 = Color3.new(0, 0, 0)
  70. Enter_.TextScaled = true
  71. Enter_.TextSize = 14
  72. Enter_.TextWrapped = true
  73. Pass.Name = "Pass"
  74. Pass.Parent = Frame_
  75. Pass.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  76. Pass.BorderColor3 = Color3.new(0, 0, 0)
  77. Pass.BorderSizePixel = 5
  78. Pass.Position = UDim2.new(0.0399999991, 0, 0.535000026, 0)
  79. Pass.Size = UDim2.new(0.925000012, 0, 0.25, 0)
  80. Pass.Font = Enum.Font.SourceSans
  81. Pass.FontSize = Enum.FontSize.Size14
  82. Pass.Text = "Password"
  83. Pass.TextColor3 = Color3.new(0, 0, 0)
  84. Pass.TextScaled = true
  85. Pass.TextSize = 14
  86. Pass.TextWrapped = true
  87. local function WL(u,p)
  88. if AUTH[User.Text]and AUTH[User.Text]==Pass.Text then
  89. return true
  90. end
  91. end
  92. Enter_.MouseButton1Down:connect(function()
  93. if WL()then
  94. Enter_.Text = 'Whitelisted!'
  95. wait(3)
  96. Whitelist:Destroy()
  97. _WL = true
  98. else
  99. Enter_.Text = 'Not whitelisted!'
  100. wait(3)
  101. Whitelist:Destroy()
  102. script:Destroy()
  103. end
  104. end)
  105. local function dap(x)
  106. for _,v in pairs(G'Players':GetPlayers())do
  107. if string.find(v.Name, x)then
  108. return v
  109. end
  110. end
  111. end
  112. local function _dap(x)
  113. for _,v in pairs(workspace:GetChildren())do
  114. if string.find(v.Name, x)and v:IsA'Model'and v:FindFirstChild'Humanoid'then
  115. return v
  116. end
  117. end
  118. end
  119. local function Get(x, w)
  120. if w == 'Char'then
  121. if workspace:FindFirstChild(x)then
  122. return workspace:WaitForChild(x)
  123. elseif G'Players':FindFirstChild(x)then
  124. repeat wait(.5)until G'Players':WaitForChild(x).Character
  125. return G'Players':WaitForChild(x).Character
  126. elseif _dap(x)then
  127. return _dap(x)
  128. elseif x == 'me'then
  129. if plr.Character then
  130. return plr.Character
  131. elseif workspace:FindFirstChild(plr.Name)then
  132. return workspace:WaitForChild(plr.Name)
  133. elseif _dap(x)then
  134. return _dap(x)
  135. end
  136. --[[elseif x == 'others'then
  137. local Q = {}
  138. for _,v in pairs(game:GetService'Players':GetPlayers())do
  139. if v ~= plr and v.Character then
  140. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  141. end
  142. end
  143. wait();return Q
  144. elseif x == 'all'then
  145. local Q = {}
  146. for _,v in pairs(game:GetService'Players':GetPlayers())do
  147. if v.Character then
  148. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  149. end
  150. end
  151. wait();return Q]]
  152. end
  153. elseif w == 'Player'then
  154. if game:GetService'Players':FindFirstChild(x)then
  155. return G'Players':WaitForChild(x)
  156. elseif workspace:FindFirstChild(x)and G'Players':GetPlayerFromCharacter(x)then
  157. return G'Players':GetPlayerFromCharacter(x)
  158. elseif dap(x)then
  159. return dap(x)
  160. elseif x == 'me'then
  161. return plr
  162. --[[elseif x == 'others'then
  163. local Q = {}
  164. for _,v in pairs(game:GetService'Players':GetPlayers())do
  165. if v ~= plr then
  166. local err,succ = pcall(function()table.insert(Q, v)end)
  167. end
  168. end
  169. wait();return Q
  170. elseif x == 'all'then
  171. local Q = {}
  172. for _,v in pairs(game:GetService'Players':GetPlayers())do
  173. local err,succ = pcall(function()table.insert(Q, v)end)
  174. end
  175. wait();return Q]]
  176. end
  177. end
  178. end
  179. repeat wait(.5)until _WL
  180. local Gui = Instance.new("ScreenGui", G'CoreGui')
  181. local Grab = Instance.new("Frame")
  182. local Body = Instance.new("Frame")
  183. local PlayerName = Instance.new("TextBox")
  184. local Hacker = Instance.new("TextButton")
  185. local FF = Instance.new("TextButton")
  186. local Duck = Instance.new("TextButton")
  187. local Btools = Instance.new("TextButton")
  188. local Shrek = Instance.new("TextButton")
  189. local Invisible = Instance.new("TextButton")
  190. local Visible = Instance.new("TextButton")
  191. local Kill = Instance.new("TextButton")
  192. local Crash = Instance.new("TextButton")
  193. local Punish = Instance.new("TextButton")
  194. local MLG = Instance.new("TextButton")
  195. local Goto = Instance.new("TextButton")
  196. local Bring = Instance.new("TextButton")
  197. local Unpunish = Instance.new("TextButton")
  198. local God = Instance.new("TextButton")
  199. local Dong = Instance.new("TextButton")
  200. local Famous = Instance.new("TextButton")
  201. local Keemstar = Instance.new("TextButton")
  202. local ValueBox = Instance.new("TextBox")
  203. local Page1 = Instance.new("TextButton")
  204. local Page2 = Instance.new("TextButton")
  205. local Page3 = Instance.new("TextButton")
  206. local Health = Instance.new("TextButton")
  207. local SCrash = Instance.new("TextButton")
  208. local UnFF = Instance.new("TextButton")
  209. local Title = Instance.new("TextLabel")
  210. local Close = Instance.new("TextButton")
  211. Gui.Name = math.random()
  212. Grab.Name = "Grab"
  213. Grab.Parent = Gui
  214. Grab.Active = true
  215. Grab.BackgroundColor3 = Color3.new(0, 0, 0)
  216. Grab.BackgroundTransparency = 0.75
  217. Grab.BorderColor3 = Color3.new(0, 0, 0)
  218. Grab.BorderSizePixel = 0
  219. Grab.Draggable = true
  220. Grab.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
  221. Grab.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
  222.  
  223. Body.Name = "Body"
  224. Body.Parent = Grab
  225. Body.Active = true
  226. Body.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  227. Body.BorderSizePixel = 0
  228. Body.Position = UDim2.new(0, 0, 0, 24)
  229. Body.Size = UDim2.new(0, 250, 0, 350)
  230. Body.ZIndex = 2
  231.  
  232. PlayerName.Name = "PlayerName"
  233. PlayerName.Parent = Body
  234. PlayerName.BackgroundColor3 = Color3.new(1, 1, 1)
  235. PlayerName.BorderSizePixel = 0
  236. PlayerName.Position = UDim2.new(0.032097958, 0, 0, 20)
  237. PlayerName.Size = UDim2.new(0.449371427, 0, 0, 28)
  238. PlayerName.ZIndex = 2
  239. PlayerName.Font = Enum.Font.SourceSans
  240. PlayerName.FontSize = Enum.FontSize.Size14
  241. PlayerName.Text = "Player Name"
  242. PlayerName.TextScaled = true
  243. PlayerName.TextSize = 14
  244. PlayerName.TextWrapped = true
  245.  
  246. Hacker.Name = "Hacker"
  247. Hacker.Parent = Body
  248. Hacker.BackgroundColor3 = Color3.new(0, 0, 0)
  249. Hacker.BorderSizePixel = 0
  250. Hacker.Position = UDim2.new(0.368355215, 0, 0, 64)
  251. Hacker.Size = UDim2.new(0.272262543, 0, 0, 26)
  252. Hacker.ZIndex = 2
  253. Hacker.Font = Enum.Font.SourceSans
  254. Hacker.FontSize = Enum.FontSize.Size14
  255. Hacker.Text = "Hacker"
  256. Hacker.TextColor3 = Color3.new(1, 1, 1)
  257. Hacker.TextScaled = true
  258. Hacker.TextSize = 14
  259. Hacker.TextStrokeTransparency = 0
  260. Hacker.TextWrapped = true
  261.  
  262. FF.Name = "FF"
  263. FF.Parent = Body
  264. FF.BackgroundColor3 = Color3.new(0, 0, 0)
  265. FF.BorderSizePixel = 0
  266. FF.Position = UDim2.new(0.672648609, 0, 0, 64)
  267. FF.Size = UDim2.new(0.272262543, 0, 0, 26)
  268. FF.ZIndex = 2
  269. FF.Font = Enum.Font.SourceSans
  270. FF.FontSize = Enum.FontSize.Size14
  271. FF.Text = "FF"
  272. FF.TextColor3 = Color3.new(1, 1, 1)
  273. FF.TextScaled = true
  274. FF.TextSize = 14
  275. FF.TextStrokeTransparency = 0
  276. FF.TextWrapped = true
  277.  
  278. Duck.Name = "Duck"
  279. Duck.Parent = Body
  280. Duck.BackgroundColor3 = Color3.new(0, 0, 0)
  281. Duck.BorderSizePixel = 0
  282. Duck.Position = UDim2.new(0.0480463319, 0, 0, 104)
  283. Duck.Size = UDim2.new(0.272262543, 0, 0, 26)
  284. Duck.ZIndex = 2
  285. Duck.Font = Enum.Font.SourceSans
  286. Duck.FontSize = Enum.FontSize.Size14
  287. Duck.Text = "Duck"
  288. Duck.TextColor3 = Color3.new(1, 1, 1)
  289. Duck.TextScaled = true
  290. Duck.TextSize = 14
  291. Duck.TextStrokeTransparency = 0
  292. Duck.TextWrapped = true
  293.  
  294. Btools.Name = "Btools"
  295. Btools.Parent = Body
  296. Btools.BackgroundColor3 = Color3.new(0, 0, 0)
  297. Btools.BorderSizePixel = 0
  298. Btools.Position = UDim2.new(0.672648609, 0, 0, 104)
  299. Btools.Size = UDim2.new(0.272262543, 0, 0, 26)
  300. Btools.ZIndex = 2
  301. Btools.Font = Enum.Font.SourceSans
  302. Btools.FontSize = Enum.FontSize.Size14
  303. Btools.Text = "BTools"
  304. Btools.TextColor3 = Color3.new(1, 1, 1)
  305. Btools.TextScaled = true
  306. Btools.TextSize = 14
  307. Btools.TextStrokeTransparency = 0
  308. Btools.TextWrapped = true
  309.  
  310. Shrek.Name = "Shrek"
  311. Shrek.Parent = Body
  312. Shrek.BackgroundColor3 = Color3.new(0, 0, 0)
  313. Shrek.BorderSizePixel = 0
  314. Shrek.Position = UDim2.new(0.0480463319, 0, 0, 148)
  315. Shrek.Size = UDim2.new(0.272262543, 0, 0, 26)
  316. Shrek.ZIndex = 2
  317. Shrek.Font = Enum.Font.SourceSans
  318. Shrek.FontSize = Enum.FontSize.Size14
  319. Shrek.Text = "Shrek"
  320. Shrek.TextColor3 = Color3.new(1, 1, 1)
  321. Shrek.TextScaled = true
  322. Shrek.TextSize = 14
  323. Shrek.TextStrokeTransparency = 0
  324. Shrek.TextWrapped = true
  325.  
  326. Invisible.Name = "Invisible"
  327. Invisible.Parent = Body
  328. Invisible.BackgroundColor3 = Color3.new(0, 0, 0)
  329. Invisible.BorderSizePixel = 0
  330. Invisible.Position = UDim2.new(0.368355215, 0, 0, 148)
  331. Invisible.Size = UDim2.new(0.272262543, 0, 0, 26)
  332. Invisible.ZIndex = 2
  333. Invisible.Font = Enum.Font.SourceSans
  334. Invisible.FontSize = Enum.FontSize.Size14
  335. Invisible.Text = "Invisible"
  336. Invisible.TextColor3 = Color3.new(1, 1, 1)
  337. Invisible.TextScaled = true
  338. Invisible.TextSize = 14
  339. Invisible.TextStrokeTransparency = 0
  340. Invisible.TextWrapped = true
  341.  
  342. Visible.Name = "Visible"
  343. Visible.Parent = Body
  344. Visible.BackgroundColor3 = Color3.new(0, 0, 0)
  345. Visible.BorderSizePixel = 0
  346. Visible.Position = UDim2.new(0.672648609, 0, 0, 148)
  347. Visible.Size = UDim2.new(0.272262543, 0, 0, 26)
  348. Visible.ZIndex = 2
  349. Visible.Font = Enum.Font.SourceSans
  350. Visible.FontSize = Enum.FontSize.Size14
  351. Visible.Text = "Visible"
  352. Visible.TextColor3 = Color3.new(1, 1, 1)
  353. Visible.TextScaled = true
  354. Visible.TextSize = 14
  355. Visible.TextStrokeTransparency = 0
  356. Visible.TextWrapped = true
  357.  
  358. Kill.Name = "Kill"
  359. Kill.Parent = Body
  360. Kill.BackgroundColor3 = Color3.new(0, 0, 0)
  361. Kill.BorderSizePixel = 0
  362. Kill.Position = UDim2.new(0.0480463319, 0, 0, 192)
  363. Kill.Size = UDim2.new(0.272262543, 0, 0, 26)
  364. Kill.ZIndex = 2
  365. Kill.Font = Enum.Font.SourceSans
  366. Kill.FontSize = Enum.FontSize.Size14
  367. Kill.Text = "Kill"
  368. Kill.TextColor3 = Color3.new(1, 1, 1)
  369. Kill.TextScaled = true
  370. Kill.TextSize = 14
  371. Kill.TextStrokeTransparency = 0
  372. Kill.TextWrapped = true
  373.  
  374. Crash.Name = "Crash"
  375. Crash.Parent = Body
  376. Crash.BackgroundColor3 = Color3.new(0, 0, 0)
  377. Crash.BorderSizePixel = 0
  378. Crash.Position = UDim2.new(0.368355215, 0, 0, 192)
  379. Crash.Size = UDim2.new(0.272262543, 0, 0, 26)
  380. Crash.ZIndex = 2
  381. Crash.Font = Enum.Font.SourceSans
  382. Crash.FontSize = Enum.FontSize.Size14
  383. Crash.Text = "Crash"
  384. Crash.TextColor3 = Color3.new(1, 1, 1)
  385. Crash.TextScaled = true
  386. Crash.TextSize = 14
  387. Crash.TextStrokeTransparency = 0
  388. Crash.TextWrapped = true
  389.  
  390. Punish.Name = "Punish"
  391. Punish.Parent = Body
  392. Punish.BackgroundColor3 = Color3.new(0, 0, 0)
  393. Punish.BorderSizePixel = 0
  394. Punish.Position = UDim2.new(0.672648609, 0, 0, 192)
  395. Punish.Size = UDim2.new(0.272262543, 0, 0, 26)
  396. Punish.ZIndex = 2
  397. Punish.Font = Enum.Font.SourceSans
  398. Punish.FontSize = Enum.FontSize.Size14
  399. Punish.Text = "Punish"
  400. Punish.TextColor3 = Color3.new(1, 1, 1)
  401. Punish.TextScaled = true
  402. Punish.TextSize = 14
  403. Punish.TextStrokeTransparency = 0
  404. Punish.TextWrapped = true
  405.  
  406. MLG.Name = "MLG"
  407. MLG.Parent = Body
  408. MLG.BackgroundColor3 = Color3.new(0, 0, 0)
  409. MLG.BorderSizePixel = 0
  410. MLG.Position = UDim2.new(0.0480463319, 0, 0, 236)
  411. MLG.Size = UDim2.new(0.272262543, 0, 0, 26)
  412. MLG.ZIndex = 2
  413. MLG.Font = Enum.Font.SourceSans
  414. MLG.FontSize = Enum.FontSize.Size14
  415. MLG.Text = "MLG"
  416. MLG.TextColor3 = Color3.new(1, 1, 1)
  417. MLG.TextScaled = true
  418. MLG.TextSize = 14
  419. MLG.TextStrokeTransparency = 0
  420. MLG.TextWrapped = true
  421.  
  422. Goto.Name = "Goto"
  423. Goto.Parent = Body
  424. Goto.BackgroundColor3 = Color3.new(0, 0, 0)
  425. Goto.BorderSizePixel = 0
  426. Goto.Position = UDim2.new(0.368355215, 0, 0, 236)
  427. Goto.Size = UDim2.new(0.272262543, 0, 0, 26)
  428. Goto.ZIndex = 2
  429. Goto.Font = Enum.Font.SourceSans
  430. Goto.FontSize = Enum.FontSize.Size14
  431. Goto.Text = "Goto"
  432. Goto.TextColor3 = Color3.new(1, 1, 1)
  433. Goto.TextScaled = true
  434. Goto.TextSize = 14
  435. Goto.TextStrokeTransparency = 0
  436. Goto.TextWrapped = true
  437.  
  438. Bring.Name = "Bring"
  439. Bring.Parent = Body
  440. Bring.BackgroundColor3 = Color3.new(0, 0, 0)
  441. Bring.BorderSizePixel = 0
  442. Bring.Position = UDim2.new(0.672648609, 0, 0, 236)
  443. Bring.Size = UDim2.new(0.272262543, 0, 0, 26)
  444. Bring.ZIndex = 2
  445. Bring.Font = Enum.Font.SourceSans
  446. Bring.FontSize = Enum.FontSize.Size14
  447. Bring.Text = "Bring"
  448. Bring.TextColor3 = Color3.new(1, 1, 1)
  449. Bring.TextScaled = true
  450. Bring.TextSize = 14
  451. Bring.TextStrokeTransparency = 0
  452. Bring.TextWrapped = true
  453.  
  454. Unpunish.Name = "Unpunish"
  455. Unpunish.Parent = Body
  456. Unpunish.BackgroundColor3 = Color3.new(0, 0, 0)
  457. Unpunish.BorderSizePixel = 0
  458. Unpunish.Position = UDim2.new(0.368355215, 0, 0, 284)
  459. Unpunish.Size = UDim2.new(0.272262543, 0, 0, 26)
  460. Unpunish.ZIndex = 2
  461. Unpunish.Font = Enum.Font.SourceSans
  462. Unpunish.FontSize = Enum.FontSize.Size14
  463. Unpunish.Text = "Unpunish"
  464. Unpunish.TextColor3 = Color3.new(1, 1, 1)
  465. Unpunish.TextScaled = true
  466. Unpunish.TextSize = 14
  467. Unpunish.TextStrokeTransparency = 0
  468. Unpunish.TextWrapped = true
  469.  
  470. God.Name = "God"
  471. God.Parent = Body
  472. God.BackgroundColor3 = Color3.new(0, 0, 0)
  473. God.BorderSizePixel = 0
  474. God.Position = UDim2.new(0.0480463319, 0, 0, 64)
  475. God.Size = UDim2.new(0.272262543, 0, 0, 26)
  476. God.ZIndex = 2
  477. God.Font = Enum.Font.SourceSans
  478. God.FontSize = Enum.FontSize.Size14
  479. God.Text = "God"
  480. God.TextColor3 = Color3.new(1, 1, 1)
  481. God.TextScaled = true
  482. God.TextSize = 14
  483. God.TextStrokeTransparency = 0
  484. God.TextWrapped = true
  485.  
  486. Dong.Name = "Dong"
  487. Dong.Parent = Body
  488. Dong.BackgroundColor3 = Color3.new(0, 0, 0)
  489. Dong.BorderSizePixel = 0
  490. Dong.Position = UDim2.new(0.368355215, 0, 0, 104)
  491. Dong.Size = UDim2.new(0.272262543, 0, 0, 26)
  492. Dong.ZIndex = 2
  493. Dong.Font = Enum.Font.SourceSans
  494. Dong.FontSize = Enum.FontSize.Size14
  495. Dong.Text = "Dong"
  496. Dong.TextColor3 = Color3.new(1, 1, 1)
  497. Dong.TextScaled = true
  498. Dong.TextSize = 14
  499. Dong.TextStrokeTransparency = 0
  500. Dong.TextWrapped = true
  501.  
  502. Famous.Name = "Famous"
  503. Famous.Parent = Body
  504. Famous.BackgroundColor3 = Color3.new(0, 0, 0)
  505. Famous.BorderSizePixel = 0
  506. Famous.Position = UDim2.new(0.674057126, 0, 0, 284)
  507. Famous.Size = UDim2.new(0.272262543, 0, 0, 26)
  508. Famous.ZIndex = 2
  509. Famous.Font = Enum.Font.SourceSans
  510. Famous.FontSize = Enum.FontSize.Size14
  511. Famous.Text = "Famous"
  512. Famous.TextColor3 = Color3.new(1, 1, 1)
  513. Famous.TextScaled = true
  514. Famous.TextSize = 14
  515. Famous.TextStrokeTransparency = 0
  516. Famous.TextWrapped = true
  517.  
  518. Keemstar.Name = "Keemstar"
  519. Keemstar.Parent = Body
  520. Keemstar.BackgroundColor3 = Color3.new(0, 0, 0)
  521. Keemstar.BorderSizePixel = 0
  522. Keemstar.Position = UDim2.new(0.048146937, 0, 0, 284)
  523. Keemstar.Size = UDim2.new(0.272262543, 0, 0, 26)
  524. Keemstar.ZIndex = 2
  525. Keemstar.Font = Enum.Font.SourceSans
  526. Keemstar.FontSize = Enum.FontSize.Size14
  527. Keemstar.Text = "Keemstar"
  528. Keemstar.TextColor3 = Color3.new(1, 1, 1)
  529. Keemstar.TextScaled = true
  530. Keemstar.TextSize = 14
  531. Keemstar.TextStrokeTransparency = 0
  532. Keemstar.TextWrapped = true
  533.  
  534. ValueBox.Name = "ValueBox"
  535. ValueBox.Parent = Body
  536. ValueBox.BackgroundColor3 = Color3.new(1, 1, 1)
  537. ValueBox.BorderSizePixel = 0
  538. ValueBox.Position = UDim2.new(0.513567328, 0, 0, 20)
  539. ValueBox.Size = UDim2.new(0.465420425, 0, 0, 28)
  540. ValueBox.ZIndex = 2
  541. ValueBox.Font = Enum.Font.SourceSans
  542. ValueBox.FontSize = Enum.FontSize.Size14
  543. ValueBox.Text = "Value"
  544. ValueBox.TextScaled = true
  545. ValueBox.TextSize = 14
  546. ValueBox.TextWrapped = true
  547.  
  548. Page1.Name = "Page1"
  549. Page1.Parent = Body
  550. Page1.BackgroundColor3 = Color3.new(0, 0, 0)
  551. Page1.BorderSizePixel = 0
  552. Page1.Position = UDim2.new(0, 0, 0, 349)
  553. Page1.Size = UDim2.new(0.328334004, 0, 0, 20)
  554. Page1.ZIndex = 2
  555. Page1.Font = Enum.Font.SourceSans
  556. Page1.FontSize = Enum.FontSize.Size14
  557. Page1.Text = "Page 1"
  558. Page1.TextColor3 = Color3.new(1, 1, 1)
  559. Page1.TextScaled = true
  560. Page1.TextSize = 14
  561. Page1.TextStrokeTransparency = 0
  562. Page1.TextWrapped = true
  563.  
  564. Page2.Name = "Page2"
  565. Page2.Parent = Body
  566. Page2.BackgroundColor3 = Color3.new(0, 0, 0)
  567. Page2.BorderSizePixel = 0
  568. Page2.Position = UDim2.new(0.336342156, 0, 0, 349)
  569. Page2.Size = UDim2.new(0.328334004, 0, 0, 20)
  570. Page2.ZIndex = 2
  571. Page2.Font = Enum.Font.SourceSans
  572. Page2.FontSize = Enum.FontSize.Size14
  573. Page2.Text = "Page 2"
  574. Page2.TextColor3 = Color3.new(1, 1, 1)
  575. Page2.TextScaled = true
  576. Page2.TextSize = 14
  577. Page2.TextStrokeTransparency = 0
  578. Page2.TextWrapped = true
  579.  
  580. Page3.Name = "Page3"
  581. Page3.Parent = Body
  582. Page3.BackgroundColor3 = Color3.new(0, 0, 0)
  583. Page3.BorderSizePixel = 0
  584. Page3.Position = UDim2.new(0.672684312, 0, 0, 349)
  585. Page3.Size = UDim2.new(0.328334004, 0, 0, 20)
  586. Page3.ZIndex = 2
  587. Page3.Font = Enum.Font.SourceSans
  588. Page3.FontSize = Enum.FontSize.Size14
  589. Page3.Text = "Page 3"
  590. Page3.TextColor3 = Color3.new(1, 1, 1)
  591. Page3.TextScaled = true
  592. Page3.TextSize = 14
  593. Page3.TextStrokeTransparency = 0
  594. Page3.TextWrapped = true
  595.  
  596. Health.Name = "Health"
  597. Health.Parent = Body
  598. Health.BackgroundColor3 = Color3.new(0, 0, 0)
  599. Health.BorderSizePixel = 0
  600. Health.Position = UDim2.new(0.0480000004, 0, 0.914285719, 0)
  601. Health.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  602. Health.ZIndex = 2
  603. Health.Font = Enum.Font.SourceSans
  604. Health.FontSize = Enum.FontSize.Size14
  605. Health.Text = "MaxHealth"
  606. Health.TextColor3 = Color3.new(1, 1, 1)
  607. Health.TextScaled = true
  608. Health.TextSize = 14
  609. Health.TextStrokeTransparency = 0
  610. Health.TextWrapped = true
  611.  
  612. SCrash.Name = "SCrash"
  613. SCrash.Parent = Body
  614. SCrash.BackgroundColor3 = Color3.new(0, 0, 0)
  615. SCrash.BorderSizePixel = 0
  616. SCrash.Position = UDim2.new(0.379999995, 0, 0.920000017, 0)
  617. SCrash.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  618. SCrash.ZIndex = 2
  619. SCrash.Font = Enum.Font.SourceSans
  620. SCrash.FontSize = Enum.FontSize.Size14
  621. SCrash.Text = "Crash Server"
  622. SCrash.TextColor3 = Color3.new(1, 1, 1)
  623. SCrash.TextScaled = true
  624. SCrash.TextSize = 14
  625. SCrash.TextStrokeTransparency = 0
  626. SCrash.TextWrapped = true
  627.  
  628. UnFF.Name = "Un-FF"
  629. UnFF.Parent = Body
  630. UnFF.BackgroundColor3 = Color3.new(0, 0, 0)
  631. UnFF.BorderSizePixel = 0
  632. UnFF.Position = UDim2.new(0.671999991, 0, 0.922857165, 0)
  633. UnFF.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  634. UnFF.ZIndex = 2
  635. UnFF.Font = Enum.Font.SourceSans
  636. UnFF.FontSize = Enum.FontSize.Size14
  637. UnFF.Text = "Un-FF"
  638. UnFF.TextColor3 = Color3.new(1, 1, 1)
  639. UnFF.TextScaled = true
  640. UnFF.TextSize = 14
  641. UnFF.TextStrokeTransparency = 0
  642. UnFF.TextWrapped = true
  643.  
  644. Title.Name = "Title"
  645. Title.Parent = Grab
  646. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  647. Title.BackgroundTransparency = 1
  648. Title.BorderSizePixel = 0
  649. Title.Position = UDim2.new(0.349999994, 0, 0, -5)
  650. Title.Size = UDim2.new(0.263999999, 0, 0, 28)
  651. Title.ZIndex = 2
  652. Title.Font = Enum.Font.SourceSans
  653. Title.FontSize = Enum.FontSize.Size24
  654. Title.Text = "JurD"
  655. Title.TextColor3 = Color3.new(1, 1, 1)
  656. Title.TextSize = 24
  657. Title.TextWrapped = true
  658.  
  659. Close.Name = "Close"
  660. Close.Parent = Title
  661. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  662. Close.BorderSizePixel = 0
  663. Close.Position = UDim2.new(2.5, 0, 0.300000012, 0)
  664. Close.Size = UDim2.new(0, 20, 0, 20)
  665. Close.ZIndex = 2
  666. Close.Font = Enum.Font.SourceSans
  667. Close.FontSize = Enum.FontSize.Size42
  668. Close.Text = "-"
  669. Close.TextColor3 = Color3.new(0, 0, 0)
  670. Close.TextSize = 42
  671. Close.TextWrapped = true
  672. --[[Page1.MouseButton1Down:connect(function()
  673. end)]]
  674. Page2.MouseButton1Down:connect(function()
  675. local Gui = Instance.new("ScreenGui" , G'CoreGui')
  676. Gui.RobloxLocked = true
  677. Gui.Name = math.random()
  678. local Pull = Instance.new("Frame" ,Gui)
  679. Pull.Name = "Grab"
  680. Pull.Active = true
  681. Pull.BackgroundColor3 = Color3.new(0, 0, 0)
  682. Pull.BackgroundTransparency = 0
  683. Pull.BorderSizePixel = 0
  684. Pull.Position = UDim2.new(0.2, 0, 0, 164)
  685. Pull.Size = UDim2.new(0.157, 0, 0, 24)
  686. Pull.Draggable = true
  687. local Close_ = Instance.new("TextButton" ,Pull)
  688. Close_.Name = "Close"
  689. Close_.BackgroundColor3 = Color3.new(1, 1, 1)
  690. Close_.BackgroundTransparency = 1
  691. Close_.BorderSizePixel = 0
  692. Close_.Position = UDim2.new(0.904999971, 0, 0, -10)
  693. Close_.Size = UDim2.new(0, 20, 0, 20)
  694. Close_.ZIndex = 2
  695. Close_.Font = Enum.Font.SourceSans
  696. Close_.FontSize = Enum.FontSize.Size24
  697. Close_.Text = "-"
  698. Close_.TextColor3 = Color3.new(1, 1, 1)
  699. Close_.TextSize = 24
  700. local Body = Instance.new("Frame" ,Pull)
  701. Body.Name = "Body"
  702. Body.Active = true
  703. Body.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  704. Pull.BackgroundTransparency = 0.8
  705. Body.BorderSizePixel = 0
  706. Body.Position = UDim2.new(0, 0, 0, 24)
  707. Body.Size = UDim2.new(0, 250, 0, 350)
  708. Body.ZIndex = 2
  709. local Title = Instance.new("TextLabel" ,Pull)
  710. Title.Name = "Title"
  711. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  712. Title.BackgroundTransparency = 1
  713. Title.BorderSizePixel = 0
  714. Title.Position = UDim2.new(0.349999994, 0, 0, -5)
  715. Title.Size = UDim2.new(0.263999999, 0, 0, 28)
  716. Title.ZIndex = 2
  717. Title.Font = Enum.Font.SourceSans
  718. Title.FontSize = Enum.FontSize.Size24
  719. Title.Text = "Apoc CMDS"
  720. Title.TextColor3 = Color3.new(1, 1, 1)
  721. Title.TextSize = 24
  722. local PlayerName = Instance.new("TextBox" ,Body)
  723. PlayerName.Name = "PlayerName"
  724. PlayerName.BackgroundColor3 = Color3.new(1, 1, 1)
  725. PlayerName.BorderSizePixel = 0
  726. PlayerName.Position = UDim2.new(0.032097958, 0, 0, 20)
  727. PlayerName.Size = UDim2.new(0.449371427, 0, 0, 28)
  728. PlayerName.ZIndex = 2
  729. PlayerName.Font = Enum.Font.SourceSans
  730. PlayerName.FontSize = Enum.FontSize.Size14
  731. PlayerName.Text = "Player Name"
  732. PlayerName.TextSize = 14
  733. PlayerName.TextWrapped = true
  734. local Semigod = Instance.new("TextButton" ,Body)
  735. Semigod.Name = "Semigod"
  736. Semigod.BackgroundColor3 = Color3.new(0, 0, 0)
  737. Semigod.BorderSizePixel = 0
  738. Semigod.Position = UDim2.new(0.368355215, 0, 0, 64)
  739. Semigod.Size = UDim2.new(0.272262543, 0, 0, 26)
  740. Semigod.ZIndex = 2
  741. Semigod.Font = Enum.Font.SourceSans
  742. Semigod.FontSize = Enum.FontSize.Size14
  743. Semigod.Text = "God"
  744. Semigod.TextColor3 = Color3.new(1, 1, 1)
  745. Semigod.TextSize = 14
  746. Semigod.TextStrokeTransparency = 0
  747. local KillAll = Semigod:Clone()
  748. KillAll.Name = 'KillAll'
  749. KillAll.Parent = Body
  750. KillAll.Position = UDim2.new(0.672648609, 0, 0, 64)
  751. KillAll.Text = 'Kill All'
  752. local KillPlr = Semigod:Clone()
  753. KillPlr.Name = 'KillPlr'
  754. KillPlr.Parent = Body
  755. KillPlr.Position = UDim2.new(0.0480463319, 0, 0, 104)
  756. KillPlr.Text = 'Kill'
  757. local Bring = Semigod:Clone()
  758. Bring.Name = 'Bring'
  759. Bring.Parent = Body
  760. Bring.Position = UDim2.new(0.672648609, 0, 0, 104)
  761. Bring.Text = 'Bring'
  762. local Goto2 = God:Clone()
  763. Goto2.Name = 'Goto'
  764. Goto2.Parent = Body
  765. Goto2.Position = UDim2.new(0.0480463319, 0, 0, 148)
  766. Goto2.Text = 'Goto'
  767. local TpAllMe = Semigod:Clone()
  768. TpAllMe.Name = 'TpAllMe'
  769. TpAllMe.Parent = Body
  770. TpAllMe.Position = UDim2.new(0.0480463319, 0, 0, 148)
  771. TpAllMe.Text = 'Bring All'
  772. local GiveBadges = Semigod:Clone()
  773. GiveBadges.Name = 'GiveBadges'
  774. GiveBadges.Parent = Body
  775. GiveBadges.Position = UDim2.new(0.368355215, 0, 0, 148)
  776. GiveBadges.Text = 'Give Badges'
  777. local FALKIT = Semigod:Clone()
  778. FALKIT.Name = 'SpawnFal'
  779. FALKIT.Parent = Body
  780. FALKIT.Position = UDim2.new(0.672648609, 0, 0, 148)
  781. FALKIT.Text = 'Fal Kit'
  782. local HungerThirst = God:Clone()
  783. HungerThirst.Name = 'HT'
  784. HungerThirst.Parent = Body
  785. HungerThirst.Position = UDim2.new(0.0480463319, 0, 0, 192)
  786. HungerThirst.Text = 'Hunger Thirst'
  787. local Valbox2 = PlayerName:Clone()
  788. Valbox2.Name = 'ValueBox'
  789. Valbox2.Parent = Body
  790. Valbox2.Position = UDim2.new(0.513567328, 0, 0, 20)
  791. Valbox2.Size= UDim2.new(0.465420425, 0, 0, 28)
  792. Valbox2.Text = 'Value'
  793. Semigod.MouseButton1Down:connect(function()
  794. local P = Get(PlayerName.Text,'Char')
  795. while wait(.25)do
  796. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(P:WaitForChild'Humanoid', 420699001)
  797. end
  798. end)
  799. -- =====================================================================
  800. KillAll.MouseButton1Down:connect(function()
  801. for i,v in pairs(G'Players':GetPlayers())do
  802. repeat wait(.5)until v.Character
  803. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(v.Character:WaitForChild'Humanoid', -420699001)
  804. end
  805. end)
  806. -- =====================================================================
  807. KillPlr.MouseButton1Down:connect(function()
  808. local P = Get(PlayerName.Text,'Char')
  809. game:GetService'Lighting':WaitForChild'Remote':WaitForChild'AddHealth':FireServer(P:WaitForChild'Humanoid', -420699001)
  810. end)
  811. -- =====================================================================
  812. Bring.MouseButton1Down:connect(function()
  813. local P = Get(PlayerName.Text,'Player')
  814. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("To Me", math.floor(tick() % 1 * 100000), P)
  815. end)
  816. -- =====================================================================
  817. Goto2.MouseButton1Down:connect(function()
  818. local P = Get(PlayerName.Text,'Player')
  819. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("Me To", math.floor(tick() % 1 * 100000), P)
  820. end)
  821. -- =====================================================================
  822. TpAllMe.MouseButton1Down:connect(function()
  823. for i,v in pairs(G'Players':GetPlayers())do
  824. if v ~= plr then
  825. game:GetService'Lighting':WaitForChild'Remote':WaitForChild"TeleportRequest":InvokeServer("To Me", math.floor(tick() % 1 * 100000), v.Name)
  826. end
  827. end
  828. end)
  829. -- =====================================================================
  830. GiveBadges.MouseButton1Down:connect(function()
  831. local ps = plr:WaitForChild'playerstats'
  832. ps:WaitForChild'PlayerKill':WaitForChild'Defensive'.Value = 75
  833. ps:WaitForChild'ZombieKill':WaitForChild'Military'.Value = 751
  834. ps:WaitForChild'Days'.Value = 30
  835. end)
  836. -- =====================================================================
  837. Close_.MouseButton1Down:connect(function()
  838. if Body.Visible then
  839. Close.Text = "+"
  840. Body.Visible = false
  841. else
  842. Close.Text = "-"
  843. Body.Visible = true
  844. end
  845. end)
  846. -- =====================================================================
  847. FALKIT.MouseButton1Down:connect(function()
  848. local AO = G'Lighting':WaitForChild'Remote':WaitForChild'AddObject'
  849. local Pl = Get(PlayerName.Text,'Player'):WaitForChild'playerstats':WaitForChild'slots'
  850. AO:FireServer(Pl:WaitForChild'slotbackpack', 4016)
  851. wait(.1)
  852. AO:FireServer(Pl:WaitForChild'slotprimary', 1029)
  853. wait(.1)
  854. AO:FireServer(Pl:WaitForChild'slot1', 9013)
  855. wait(.1)
  856. AO:FireServer(Pl:WaitForChild'slot2', 9010)
  857. wait(.1)
  858. AO:FireServer(Pl:WaitForChild'slot3', 9005)
  859. wait(.1)
  860. for i = 3,10 do
  861. AO:FireServer(Pl:WaitForChild'slot'..i+1, 64)
  862. end
  863. wait(.1)
  864. for i = 11,19 do
  865. AO:FireServer(Pl:WaitForChild'slot'..i+1, 11)
  866. end
  867. wait(.1)
  868. warn'Objects spawned successfully!'
  869. end)
  870. end)
  871. Crash.MouseButton1Down:connect(function()
  872. local P = Get(PlayerName.Text,'Char'):WaitForChild'Humanoid'
  873. P.HipHeight = 1 * 0/0
  874. end)
  875. Kill.MouseButton1Down:connect(function()
  876. local P = Get(PlayerName.Text,'Char'):BreakJoints()
  877. end)
  878. God.MouseButton1Down:connect(function()
  879. local P = Get(PlayerName.Text,'Char'):WaitForChild'Humanoid'
  880. P.MaxHealth = math.huge
  881. end)
  882. Bring.MouseButton1Down:connect(function()
  883. repeat wait(.5)until plr.Character
  884. local P = plr.Character:WaitForChild'Torso'.Position + Vector3.new(0,10,0)
  885. Get(PlayerName.Text,'Char'):MoveTo(P)
  886. end)
  887. Goto.MouseButton1Down:connect(function()
  888. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'.Position + Vector3.new(0,10,0)
  889. repeat wait(.5)until plr.Character
  890. plr.Character:MoveTo(P)
  891. end)
  892. Keemstar.MouseButton1Down:connect(function()
  893. local p = Get(PlayerName.Text,'Char')
  894. local weld = Instance.new("Weld",p:WaitForChild'Torso')
  895. weld.Part0 = p.Torso
  896. local Harambe = Instance.new("Part",p:WaitForChild'Torso')
  897. Harambe.Anchored = true
  898. Harambe.CanCollide = false
  899. Harambe.Size = Vector3.new(3,2,6)
  900. Harambe.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  901. weld.Part1 = Harambe
  902. weld.C1 = CFrame.new(0,-2,0) * CFrame.Angles(0,math.rad(270),0)
  903. Harambe.Anchored = false
  904. local HarambeMesh = Instance.new("SpecialMesh",Harambe)
  905. HarambeMesh.MeshType = Enum.MeshType.FileMesh
  906. HarambeMesh.Scale = Vector3.new(1,1,1)
  907. HarambeMesh.MeshId = "rbxassetid://471652548"
  908. HarambeMesh.TextureId = "rbxassetid://471652580"
  909. local weld2 = Instance.new("Weld",p:WaitForChild'Torso')
  910. weld2.Part0 = p.Torso
  911. local Smoke = Instance.new("Part",p:WaitForChild'Torso')
  912. Smoke.Anchored = true
  913. Smoke.CanCollide = false
  914. Smoke.Size = Vector3.new(0.2,1.8,0.2)
  915. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  916. weld2.Part1 = Smoke
  917. weld2.C1 = CFrame.new(0,-3,0) * CFrame.Angles(math.rad(270),0,0)
  918. Smoke.Anchored = false
  919. Smoke.Transparency = 1;
  920. local Particle = Instance.new("ParticleEmitter",Smoke)
  921. Particle.Rate = 666;
  922. Particle.Speed = NumberRange.new(5,10);
  923. Particle.Lifetime = NumberRange.new(0.5,1);
  924. local A = {NumberSequenceKeypoint.new(0, 0, 0),NumberSequenceKeypoint.new(1, 1, 0)}
  925. local B = {NumberSequenceKeypoint.new(0, 1, 0),NumberSequenceKeypoint.new(1, 0, 0)}
  926. Particle.Transparency = NumberSequence.new(A);
  927. Particle.Size = NumberSequence.new(A);
  928. Particle.Color = ColorSequence.new(Color3.new(85/255,1,0),Color3.new(85/255,1,0))
  929. Particle.Rotation = NumberRange.new(-360, 360)
  930. Particle.VelocitySpread = 10;
  931. Particle.Texture = "rbxassetid://133619974"
  932. p:WaitForChild'Humanoid'.WalkSpeed = 50;
  933. for i,v in pairs(p:GetChildren())do
  934. if v:IsA"Part"then
  935. v.Transparency = 1;
  936. elseif v:IsA"Hat"or v:IsA'Model'then
  937. v:Destroy()
  938. end
  939. end
  940. local err,succ = pcall(function()p.Head.face:Destroy()end)
  941. local function SFX(id)local s=Instance.new("Sound",p:WaitForChild'Torso');s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  942. Harambe.Touched:connect(function(z)
  943. if z.Parent and z.Parent:FindFirstChild'Humanoid'and not z.Parent.Name ~= plr.Name then
  944. G'Players':WaitForChild(z.Parent.Name).Character:BreakJoints()
  945. local Fart = SFX(131314452)
  946. Fart:Play()
  947. end
  948. end)
  949. local Music = SFX(433992205)
  950. Music.Looped = true
  951. wait()
  952. Music:Play()
  953. end)
  954. Duck.MouseButton1Down:connect(function()
  955. local m1 = Instance.new("SpecialMesh", Get(PlayerName.Text,'Char'):WaitForChild'Torso')
  956. m1.MeshType = "FileMesh"
  957. m1.TextureId = "http://www.roblox.com/asset/?id=9419827"
  958. m1.MeshId = "http://www.roblox.com/asset/?id=9419831"
  959. m1.Scale = Vector3.new(6, 6, 6)
  960. local P = Get(PlayerName.Text,'Char')
  961. 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)
  962. local err,succ = pcall(function()P.Head.face:Destroy()end)
  963. local err,succ = pcall(function()P:WaitForChild'Torso'.Transparency = 0 end)
  964. end)
  965. Hacker.MouseButton1Down:connect(function()
  966. local bill = Instance.new("BillboardGui", Get(PlayerName.Text,'Char'):WaitForChild'Head')
  967. bill.Size = UDim2.new(4, 0, 4.5, 0)
  968. bill.AlwaysOnTop = true
  969. local label = Instance.new("TextLabel", bill)
  970. label.Size = UDim2.new(2, 0, 1, 0)
  971. label.Position = UDim2.new(-0.5, 0, -0.5, 0)
  972. label.BackgroundTransparency = 1
  973. label.FontSize = "Size24"
  974. label.TextColor3 = Color3.new(0,0,0)
  975. label.TextStrokeColor3 = Color3.new(0 ,0 ,0)
  976. label.TextStrokeTransparency = 0
  977. label.Text = "Hacker"
  978. end)
  979. Punish.MouseButton1Down:connect(function()
  980. Get(PlayerName.Text,'Char').Parent = G'ReplicatedStorage'
  981. end)
  982. Unpunish.MouseButton1Down:connect(function()
  983. Get(PlayerName.Text,'Char').Parent = workspace
  984. Get(PlayerName.Text,'Char'):MakeJoints()
  985. end)
  986. Famous.MouseButton1Down:connect(function()
  987. game:GetService"RunService":BindToRenderStep("ew",0,function()
  988. for i,v in pairs(game:GetService'Players':GetPlayers())do
  989. repeat wait(.5)until v.Character
  990. v.Character:WaitForChild'Humanoid':MoveTo(Get(PlayerName.Text,'Char'):WaitForChild'Head'.Position)
  991. end
  992. end)
  993. end)
  994. Btools.MouseButton1Down:connect(function()
  995. local P = Get(PlayerName.Text,'Player')
  996. local a,b,c = Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack')
  997. a.BinType = 2
  998. b.BinType = 3
  999. c.BinType = 4
  1000. end)
  1001. FF.MouseButton1Down:connect(function()
  1002. Instance.new("ForceField", Get(PlayerName.Text,'Char'))
  1003. end)
  1004. MLG.MouseButton1Down:connect(function()
  1005. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  1006. local pe = Instance.new("ParticleEmitter", P)
  1007. pe.Texture = "http://www.roblox.com/asset/?id=8979672"
  1008. pe.VelocitySpread = 50
  1009. local se = Instance.new("ParticleEmitter", P)
  1010. se.Texture = "http://www.roblox.com/asset/?id=176067516"
  1011. se.VelocitySpread = 50
  1012. local fe = Instance.new("ParticleEmitter", P)
  1013. fe.Texture = "http://www.roblox.com/asset/?id=179012130"
  1014. fe.VelocitySpread = 50
  1015. end)
  1016. Dong.MouseButton1Down:connect(function()
  1017. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  1018. local stick = Instance.new("Part", P)
  1019. local c = Instance.new("CylinderMesh", stick)
  1020. stick.Size = Vector3.new(2,8.2,2)
  1021. stick.BrickColor = BrickColor.new("Pastel brown")
  1022. stick.BottomSurface = "Smooth"
  1023. stick.TopSurface = "Smooth"
  1024. stick.Position = P.Position
  1025. local wstick = Instance.new("Weld", P)
  1026. wstick.Part0 = wstick.Parent
  1027. wstick.Part1 = stick
  1028. wstick.C1 = CFrame.new(Vector3.new(0,3.5,-1.5)) * CFrame.Angles(80,0,0)
  1029. local ball1 = Instance.new("Part", P)
  1030. ball1.BrickColor = stick.BrickColor
  1031. ball1.Shape = "Ball"
  1032. ball1.Size = Vector3.new(3,3,3)
  1033. local wb1 = Instance.new("Weld", P)
  1034. wb1.Part0 = wstick.Part0
  1035. wb1.Part1 = ball1
  1036. ball1.BottomSurface = "Smooth"
  1037. ball1.TopSurface = "Smooth"
  1038. wb1.C1 = CFrame.new(Vector3.new(-0.5,1.5,0))
  1039. local ball2 = ball1:clone()
  1040. ball2.Parent = P
  1041. local wb2 = Instance.new("Weld", P)
  1042. wb2.Part0 = wstick.Part0
  1043. wb2.Part1 = ball2
  1044. wb2.C1 = CFrame.new(Vector3.new(0.5,1.5,0))
  1045. end)
  1046. Invisible.MouseButton1Down:connect(function()
  1047. local P = Get(PlayerName.Text,'Char')
  1048. for _,v in pairs(P:GetChildren())do
  1049. if v:IsA'Part'or v:IsA'UnionOperation'then
  1050. local err,succ = pcall(function()v.Transparency = 1 end)
  1051. end
  1052. end
  1053. local err,succ = pcall(function()P.Head.face:Destroy()end)
  1054. end)
  1055. Visible.MouseButton1Down:connect(function()
  1056. local P = Get(PlayerName.Text,'Char')
  1057. for _,v in pairs(P:GetChildren())do
  1058. if v:IsA'Part'or v:IsA'UnionOperation'then
  1059. local err,succ = pcall(function()v.Transparency = 0 end)
  1060. end
  1061. end
  1062. local err,succ = pcall(function()P.HumanoidRootPart.Transparency = 1 end)
  1063. end)
  1064. Health.MouseButton1Down:connect(function()
  1065. local P = Get(PlayerName.Text,'Char')
  1066. P:WaitForChild'Humanoid'.MaxHealth = ValueBox
  1067. wait()
  1068. P:WaitForChild'Humanoid'.Health = ValueBox
  1069. end)
  1070. SCrash.MouseButton1Down:connect(function()
  1071. workspace.Gravity = 0/0
  1072. end)
  1073. UnFF.MouseButton1Down:connect(function()
  1074. local P = Get(PlayerName.Text,'Char')
  1075. for _,v in pairs(P:GetChildren())do
  1076. if v:IsA'ForceField'then
  1077. v:Destroy()
  1078. end
  1079. end
  1080. end)
  1081. Close.MouseButton1Down:connect(function()
  1082. if Body.Visible then
  1083. Close.Text = "+"
  1084. Body.Visible = false
  1085. else
  1086. Close.Text = "-"
  1087. Body.Visible = true
  1088. end
  1089. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement