Advertisement
Guest User

Untitled

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