Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.99 KB | None | 0 0
  1. blacklistedplaceids = {300883396, 317251128, 490843859}
  2. for i,v in pairs(blacklistedplaceids)do
  3. if game.PlaceId == v then
  4. game:GetService'Players'.LocalPlayer:Kick'Blacklisted place!'
  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. ["1"] = "1",
  15. ["USERNAME"] = "PASSWORD"
  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(2.25)
  98. Whitelist:Destroy()
  99. game:GetService'Players'.LocalPlayer:Kick'Not whitelisted!'
  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 G'ReplicatedStorage':FindFirstChild(x)then
  126. return G'ReplicatedStorage':FindFirstChild(x)
  127. elseif x == 'me'then
  128. if plr.Character then
  129. return plr.Character
  130. elseif workspace:FindFirstChild(plr.Name)then
  131. return workspace:WaitForChild(plr.Name)
  132. elseif _dap(x)then
  133. return _dap(x)
  134. elseif G'ReplicatedStorage':FindFirstChild(plr.Name)then
  135. return G'ReplicatedStorage':FindFirstChild(plr.Name)
  136. end
  137. --[[elseif x == 'others'then
  138. local Q = {}
  139. for _,v in pairs(game:GetService'Players':GetPlayers())do
  140. if v ~= plr and v.Character then
  141. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  142. end
  143. end
  144. wait();return Q
  145. elseif x == 'all'then
  146. local Q = {}
  147. for _,v in pairs(game:GetService'Players':GetPlayers())do
  148. if v.Character then
  149. local err,succ = pcall(function()table.insert(Q, v.Character)end)
  150. end
  151. end
  152. wait();return Q]]
  153. end
  154. elseif w == 'Player'then
  155. if game:GetService'Players':FindFirstChild(x)then
  156. return G'Players':WaitForChild(x)
  157. elseif workspace:FindFirstChild(x)and G'Players':GetPlayerFromCharacter(x)then
  158. return G'Players':GetPlayerFromCharacter(x)
  159. elseif dap(x)then
  160. return dap(x)
  161. elseif x == 'me'then
  162. return plr
  163. --[[elseif x == 'others'then
  164. local Q = {}
  165. for _,v in pairs(game:GetService'Players':GetPlayers())do
  166. if v ~= plr then
  167. local err,succ = pcall(function()table.insert(Q, v)end)
  168. end
  169. end
  170. wait();return Q
  171. elseif x == 'all'then
  172. local Q = {}
  173. for _,v in pairs(game:GetService'Players':GetPlayers())do
  174. local err,succ = pcall(function()table.insert(Q, v)end)
  175. end
  176. wait();return Q]]
  177. end
  178. end
  179. end
  180. repeat wait(.5)until _WL
  181. local Gui = Instance.new("ScreenGui", G'CoreGui')
  182. local Grab = Instance.new("Frame")
  183. local Body = Instance.new("Frame")
  184. local PlayerName = Instance.new("TextBox")
  185. local Hacker = Instance.new("TextButton")
  186. local FF = Instance.new("TextButton")
  187. local Duck = Instance.new("TextButton")
  188. local Btools = Instance.new("TextButton")
  189. local Shrek = Instance.new("TextButton")
  190. local Invisible = Instance.new("TextButton")
  191. local Visible = Instance.new("TextButton")
  192. local Kill = Instance.new("TextButton")
  193. local Crash = Instance.new("TextButton")
  194. local Punish = Instance.new("TextButton")
  195. local MLG = Instance.new("TextButton")
  196. local Goto = Instance.new("TextButton")
  197. local Bring = Instance.new("TextButton")
  198. local Unpunish = Instance.new("TextButton")
  199. local God = Instance.new("TextButton")
  200. local Dong = Instance.new("TextButton")
  201. local Famous = Instance.new("TextButton")
  202. local Keemstar = Instance.new("TextButton")
  203. local ValueBox = Instance.new("TextBox")
  204. local Page1 = Instance.new("TextButton")
  205. local Page2 = Instance.new("TextButton")
  206. local Page3 = Instance.new("TextButton")
  207. local Health = Instance.new("TextButton")
  208. local SCrash = Instance.new("TextButton")
  209. local UnFF = Instance.new("TextButton")
  210. local Title = Instance.new("TextLabel")
  211. local Close = Instance.new("TextButton")
  212. Gui.Name = math.random()
  213. Grab.Name = "Grab"
  214. Grab.Parent = Gui
  215. Grab.Active = true
  216. Grab.BackgroundColor3 = Color3.new(0, 0, 0)
  217. Grab.BackgroundTransparency = 0.75
  218. Grab.BorderColor3 = Color3.new(0, 0, 0)
  219. Grab.BorderSizePixel = 0
  220. Grab.Draggable = true
  221. Grab.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
  222. Grab.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
  223.  
  224. Body.Name = "Body"
  225. Body.Parent = Grab
  226. Body.Active = true
  227. Body.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.298039)
  228. Body.BorderSizePixel = 0
  229. Body.Position = UDim2.new(0, 0, 0, 24)
  230. Body.Size = UDim2.new(0, 250, 0, 350)
  231. Body.ZIndex = 2
  232.  
  233. PlayerName.Name = "PlayerName"
  234. PlayerName.Parent = Body
  235. PlayerName.BackgroundColor3 = Color3.new(1, 1, 1)
  236. PlayerName.BorderSizePixel = 0
  237. PlayerName.Position = UDim2.new(0.032097958, 0, 0, 20)
  238. PlayerName.Size = UDim2.new(0.449371427, 0, 0, 28)
  239. PlayerName.ZIndex = 2
  240. PlayerName.Font = Enum.Font.SourceSans
  241. PlayerName.FontSize = Enum.FontSize.Size14
  242. PlayerName.Text = "Player Name"
  243. PlayerName.TextScaled = true
  244. PlayerName.TextSize = 14
  245. PlayerName.TextWrapped = true
  246.  
  247. Hacker.Name = "Hacker"
  248. Hacker.Parent = Body
  249. Hacker.BackgroundColor3 = Color3.new(0, 0, 0)
  250. Hacker.BorderSizePixel = 0
  251. Hacker.Position = UDim2.new(0.368355215, 0, 0, 64)
  252. Hacker.Size = UDim2.new(0.272262543, 0, 0, 26)
  253. Hacker.ZIndex = 2
  254. Hacker.Font = Enum.Font.SourceSans
  255. Hacker.FontSize = Enum.FontSize.Size14
  256. Hacker.Text = "Hacker"
  257. Hacker.TextColor3 = Color3.new(1, 1, 1)
  258. Hacker.TextScaled = true
  259. Hacker.TextSize = 14
  260. Hacker.TextStrokeTransparency = 0
  261. Hacker.TextWrapped = true
  262.  
  263. FF.Name = "FF"
  264. FF.Parent = Body
  265. FF.BackgroundColor3 = Color3.new(0, 0, 0)
  266. FF.BorderSizePixel = 0
  267. FF.Position = UDim2.new(0.672648609, 0, 0, 64)
  268. FF.Size = UDim2.new(0.272262543, 0, 0, 26)
  269. FF.ZIndex = 2
  270. FF.Font = Enum.Font.SourceSans
  271. FF.FontSize = Enum.FontSize.Size14
  272. FF.Text = "FF"
  273. FF.TextColor3 = Color3.new(1, 1, 1)
  274. FF.TextScaled = true
  275. FF.TextSize = 14
  276. FF.TextStrokeTransparency = 0
  277. FF.TextWrapped = true
  278.  
  279. Duck.Name = "Duck"
  280. Duck.Parent = Body
  281. Duck.BackgroundColor3 = Color3.new(0, 0, 0)
  282. Duck.BorderSizePixel = 0
  283. Duck.Position = UDim2.new(0.0480463319, 0, 0, 104)
  284. Duck.Size = UDim2.new(0.272262543, 0, 0, 26)
  285. Duck.ZIndex = 2
  286. Duck.Font = Enum.Font.SourceSans
  287. Duck.FontSize = Enum.FontSize.Size14
  288. Duck.Text = "Duck"
  289. Duck.TextColor3 = Color3.new(1, 1, 1)
  290. Duck.TextScaled = true
  291. Duck.TextSize = 14
  292. Duck.TextStrokeTransparency = 0
  293. Duck.TextWrapped = true
  294.  
  295. Btools.Name = "Btools"
  296. Btools.Parent = Body
  297. Btools.BackgroundColor3 = Color3.new(0, 0, 0)
  298. Btools.BorderSizePixel = 0
  299. Btools.Position = UDim2.new(0.672648609, 0, 0, 104)
  300. Btools.Size = UDim2.new(0.272262543, 0, 0, 26)
  301. Btools.ZIndex = 2
  302. Btools.Font = Enum.Font.SourceSans
  303. Btools.FontSize = Enum.FontSize.Size14
  304. Btools.Text = "BTools"
  305. Btools.TextColor3 = Color3.new(1, 1, 1)
  306. Btools.TextScaled = true
  307. Btools.TextSize = 14
  308. Btools.TextStrokeTransparency = 0
  309. Btools.TextWrapped = true
  310.  
  311. Shrek.Name = "Shrek"
  312. Shrek.Parent = Body
  313. Shrek.BackgroundColor3 = Color3.new(0, 0, 0)
  314. Shrek.BorderSizePixel = 0
  315. Shrek.Position = UDim2.new(0.0480463319, 0, 0, 148)
  316. Shrek.Size = UDim2.new(0.272262543, 0, 0, 26)
  317. Shrek.ZIndex = 2
  318. Shrek.Font = Enum.Font.SourceSans
  319. Shrek.FontSize = Enum.FontSize.Size14
  320. Shrek.Text = "Shrek"
  321. Shrek.TextColor3 = Color3.new(1, 1, 1)
  322. Shrek.TextScaled = true
  323. Shrek.TextSize = 14
  324. Shrek.TextStrokeTransparency = 0
  325. Shrek.TextWrapped = true
  326.  
  327. Invisible.Name = "Invisible"
  328. Invisible.Parent = Body
  329. Invisible.BackgroundColor3 = Color3.new(0, 0, 0)
  330. Invisible.BorderSizePixel = 0
  331. Invisible.Position = UDim2.new(0.368355215, 0, 0, 148)
  332. Invisible.Size = UDim2.new(0.272262543, 0, 0, 26)
  333. Invisible.ZIndex = 2
  334. Invisible.Font = Enum.Font.SourceSans
  335. Invisible.FontSize = Enum.FontSize.Size14
  336. Invisible.Text = "Invisible"
  337. Invisible.TextColor3 = Color3.new(1, 1, 1)
  338. Invisible.TextScaled = true
  339. Invisible.TextSize = 14
  340. Invisible.TextStrokeTransparency = 0
  341. Invisible.TextWrapped = true
  342.  
  343. Visible.Name = "Visible"
  344. Visible.Parent = Body
  345. Visible.BackgroundColor3 = Color3.new(0, 0, 0)
  346. Visible.BorderSizePixel = 0
  347. Visible.Position = UDim2.new(0.672648609, 0, 0, 148)
  348. Visible.Size = UDim2.new(0.272262543, 0, 0, 26)
  349. Visible.ZIndex = 2
  350. Visible.Font = Enum.Font.SourceSans
  351. Visible.FontSize = Enum.FontSize.Size14
  352. Visible.Text = "Visible"
  353. Visible.TextColor3 = Color3.new(1, 1, 1)
  354. Visible.TextScaled = true
  355. Visible.TextSize = 14
  356. Visible.TextStrokeTransparency = 0
  357. Visible.TextWrapped = true
  358.  
  359. Kill.Name = "Kill"
  360. Kill.Parent = Body
  361. Kill.BackgroundColor3 = Color3.new(0, 0, 0)
  362. Kill.BorderSizePixel = 0
  363. Kill.Position = UDim2.new(0.0480463319, 0, 0, 192)
  364. Kill.Size = UDim2.new(0.272262543, 0, 0, 26)
  365. Kill.ZIndex = 2
  366. Kill.Font = Enum.Font.SourceSans
  367. Kill.FontSize = Enum.FontSize.Size14
  368. Kill.Text = "Kill"
  369. Kill.TextColor3 = Color3.new(1, 1, 1)
  370. Kill.TextScaled = true
  371. Kill.TextSize = 14
  372. Kill.TextStrokeTransparency = 0
  373. Kill.TextWrapped = true
  374.  
  375. Crash.Name = "Crash"
  376. Crash.Parent = Body
  377. Crash.BackgroundColor3 = Color3.new(0, 0, 0)
  378. Crash.BorderSizePixel = 0
  379. Crash.Position = UDim2.new(0.368355215, 0, 0, 192)
  380. Crash.Size = UDim2.new(0.272262543, 0, 0, 26)
  381. Crash.ZIndex = 2
  382. Crash.Font = Enum.Font.SourceSans
  383. Crash.FontSize = Enum.FontSize.Size14
  384. Crash.Text = "Crash"
  385. Crash.TextColor3 = Color3.new(1, 1, 1)
  386. Crash.TextScaled = true
  387. Crash.TextSize = 14
  388. Crash.TextStrokeTransparency = 0
  389. Crash.TextWrapped = true
  390.  
  391. Punish.Name = "Punish"
  392. Punish.Parent = Body
  393. Punish.BackgroundColor3 = Color3.new(0, 0, 0)
  394. Punish.BorderSizePixel = 0
  395. Punish.Position = UDim2.new(0.672648609, 0, 0, 192)
  396. Punish.Size = UDim2.new(0.272262543, 0, 0, 26)
  397. Punish.ZIndex = 2
  398. Punish.Font = Enum.Font.SourceSans
  399. Punish.FontSize = Enum.FontSize.Size14
  400. Punish.Text = "Punish"
  401. Punish.TextColor3 = Color3.new(1, 1, 1)
  402. Punish.TextScaled = true
  403. Punish.TextSize = 14
  404. Punish.TextStrokeTransparency = 0
  405. Punish.TextWrapped = true
  406.  
  407. MLG.Name = "MLG"
  408. MLG.Parent = Body
  409. MLG.BackgroundColor3 = Color3.new(0, 0, 0)
  410. MLG.BorderSizePixel = 0
  411. MLG.Position = UDim2.new(0.0480463319, 0, 0, 236)
  412. MLG.Size = UDim2.new(0.272262543, 0, 0, 26)
  413. MLG.ZIndex = 2
  414. MLG.Font = Enum.Font.SourceSans
  415. MLG.FontSize = Enum.FontSize.Size14
  416. MLG.Text = "MLG"
  417. MLG.TextColor3 = Color3.new(1, 1, 1)
  418. MLG.TextScaled = true
  419. MLG.TextSize = 14
  420. MLG.TextStrokeTransparency = 0
  421. MLG.TextWrapped = true
  422.  
  423. Goto.Name = "Goto"
  424. Goto.Parent = Body
  425. Goto.BackgroundColor3 = Color3.new(0, 0, 0)
  426. Goto.BorderSizePixel = 0
  427. Goto.Position = UDim2.new(0.368355215, 0, 0, 236)
  428. Goto.Size = UDim2.new(0.272262543, 0, 0, 26)
  429. Goto.ZIndex = 2
  430. Goto.Font = Enum.Font.SourceSans
  431. Goto.FontSize = Enum.FontSize.Size14
  432. Goto.Text = "Goto"
  433. Goto.TextColor3 = Color3.new(1, 1, 1)
  434. Goto.TextScaled = true
  435. Goto.TextSize = 14
  436. Goto.TextStrokeTransparency = 0
  437. Goto.TextWrapped = true
  438.  
  439. Bring.Name = "Bring"
  440. Bring.Parent = Body
  441. Bring.BackgroundColor3 = Color3.new(0, 0, 0)
  442. Bring.BorderSizePixel = 0
  443. Bring.Position = UDim2.new(0.672648609, 0, 0, 236)
  444. Bring.Size = UDim2.new(0.272262543, 0, 0, 26)
  445. Bring.ZIndex = 2
  446. Bring.Font = Enum.Font.SourceSans
  447. Bring.FontSize = Enum.FontSize.Size14
  448. Bring.Text = "Bring"
  449. Bring.TextColor3 = Color3.new(1, 1, 1)
  450. Bring.TextScaled = true
  451. Bring.TextSize = 14
  452. Bring.TextStrokeTransparency = 0
  453. Bring.TextWrapped = true
  454.  
  455. Unpunish.Name = "Unpunish"
  456. Unpunish.Parent = Body
  457. Unpunish.BackgroundColor3 = Color3.new(0, 0, 0)
  458. Unpunish.BorderSizePixel = 0
  459. Unpunish.Position = UDim2.new(0.368355215, 0, 0, 284)
  460. Unpunish.Size = UDim2.new(0.272262543, 0, 0, 26)
  461. Unpunish.ZIndex = 2
  462. Unpunish.Font = Enum.Font.SourceSans
  463. Unpunish.FontSize = Enum.FontSize.Size14
  464. Unpunish.Text = "Unpunish"
  465. Unpunish.TextColor3 = Color3.new(1, 1, 1)
  466. Unpunish.TextScaled = true
  467. Unpunish.TextSize = 14
  468. Unpunish.TextStrokeTransparency = 0
  469. Unpunish.TextWrapped = true
  470.  
  471. God.Name = "God"
  472. God.Parent = Body
  473. God.BackgroundColor3 = Color3.new(0, 0, 0)
  474. God.BorderSizePixel = 0
  475. God.Position = UDim2.new(0.0480463319, 0, 0, 64)
  476. God.Size = UDim2.new(0.272262543, 0, 0, 26)
  477. God.ZIndex = 2
  478. God.Font = Enum.Font.SourceSans
  479. God.FontSize = Enum.FontSize.Size14
  480. God.Text = "God"
  481. God.TextColor3 = Color3.new(1, 1, 1)
  482. God.TextScaled = true
  483. God.TextSize = 14
  484. God.TextStrokeTransparency = 0
  485. God.TextWrapped = true
  486.  
  487. Dong.Name = "Dong"
  488. Dong.Parent = Body
  489. Dong.BackgroundColor3 = Color3.new(0, 0, 0)
  490. Dong.BorderSizePixel = 0
  491. Dong.Position = UDim2.new(0.368355215, 0, 0, 104)
  492. Dong.Size = UDim2.new(0.272262543, 0, 0, 26)
  493. Dong.ZIndex = 2
  494. Dong.Font = Enum.Font.SourceSans
  495. Dong.FontSize = Enum.FontSize.Size14
  496. Dong.Text = "Dong"
  497. Dong.TextColor3 = Color3.new(1, 1, 1)
  498. Dong.TextScaled = true
  499. Dong.TextSize = 14
  500. Dong.TextStrokeTransparency = 0
  501. Dong.TextWrapped = true
  502.  
  503. Famous.Name = "Famous"
  504. Famous.Parent = Body
  505. Famous.BackgroundColor3 = Color3.new(0, 0, 0)
  506. Famous.BorderSizePixel = 0
  507. Famous.Position = UDim2.new(0.674057126, 0, 0, 284)
  508. Famous.Size = UDim2.new(0.272262543, 0, 0, 26)
  509. Famous.ZIndex = 2
  510. Famous.Font = Enum.Font.SourceSans
  511. Famous.FontSize = Enum.FontSize.Size14
  512. Famous.Text = "Famous"
  513. Famous.TextColor3 = Color3.new(1, 1, 1)
  514. Famous.TextScaled = true
  515. Famous.TextSize = 14
  516. Famous.TextStrokeTransparency = 0
  517. Famous.TextWrapped = true
  518.  
  519. Keemstar.Name = "Keemstar"
  520. Keemstar.Parent = Body
  521. Keemstar.BackgroundColor3 = Color3.new(0, 0, 0)
  522. Keemstar.BorderSizePixel = 0
  523. Keemstar.Position = UDim2.new(0.048146937, 0, 0, 284)
  524. Keemstar.Size = UDim2.new(0.272262543, 0, 0, 26)
  525. Keemstar.ZIndex = 2
  526. Keemstar.Font = Enum.Font.SourceSans
  527. Keemstar.FontSize = Enum.FontSize.Size14
  528. Keemstar.Text = "Keemstar"
  529. Keemstar.TextColor3 = Color3.new(1, 1, 1)
  530. Keemstar.TextScaled = true
  531. Keemstar.TextSize = 14
  532. Keemstar.TextStrokeTransparency = 0
  533. Keemstar.TextWrapped = true
  534.  
  535. ValueBox.Name = "ValueBox"
  536. ValueBox.Parent = Body
  537. ValueBox.BackgroundColor3 = Color3.new(1, 1, 1)
  538. ValueBox.BorderSizePixel = 0
  539. ValueBox.Position = UDim2.new(0.513567328, 0, 0, 20)
  540. ValueBox.Size = UDim2.new(0.465420425, 0, 0, 28)
  541. ValueBox.ZIndex = 2
  542. ValueBox.Font = Enum.Font.SourceSans
  543. ValueBox.FontSize = Enum.FontSize.Size14
  544. ValueBox.Text = "Value"
  545. ValueBox.TextScaled = true
  546. ValueBox.TextSize = 14
  547. ValueBox.TextWrapped = true
  548.  
  549. Page1.Name = "Page1"
  550. Page1.Parent = Body
  551. Page1.BackgroundColor3 = Color3.new(0, 0, 0)
  552. Page1.BorderSizePixel = 0
  553. Page1.Position = UDim2.new(0, 0, 0, 349)
  554. Page1.Size = UDim2.new(0.328334004, 0, 0, 20)
  555. Page1.ZIndex = 2
  556. Page1.Font = Enum.Font.SourceSans
  557. Page1.FontSize = Enum.FontSize.Size14
  558. Page1.Text = "Page 1"
  559. Page1.TextColor3 = Color3.new(1, 1, 1)
  560. Page1.TextScaled = true
  561. Page1.TextSize = 14
  562. Page1.TextStrokeTransparency = 0
  563. Page1.TextWrapped = true
  564.  
  565. Page2.Name = "Page2"
  566. Page2.Parent = Body
  567. Page2.BackgroundColor3 = Color3.new(0, 0, 0)
  568. Page2.BorderSizePixel = 0
  569. Page2.Position = UDim2.new(0.336342156, 0, 0, 349)
  570. Page2.Size = UDim2.new(0.328334004, 0, 0, 20)
  571. Page2.ZIndex = 2
  572. Page2.Font = Enum.Font.SourceSans
  573. Page2.FontSize = Enum.FontSize.Size14
  574. Page2.Text = "Page 2"
  575. Page2.TextColor3 = Color3.new(1, 1, 1)
  576. Page2.TextScaled = true
  577. Page2.TextSize = 14
  578. Page2.TextStrokeTransparency = 0
  579. Page2.TextWrapped = true
  580.  
  581. Page3.Name = "Page3"
  582. Page3.Parent = Body
  583. Page3.BackgroundColor3 = Color3.new(0, 0, 0)
  584. Page3.BorderSizePixel = 0
  585. Page3.Position = UDim2.new(0.672684312, 0, 0, 349)
  586. Page3.Size = UDim2.new(0.328334004, 0, 0, 20)
  587. Page3.ZIndex = 2
  588. Page3.Font = Enum.Font.SourceSans
  589. Page3.FontSize = Enum.FontSize.Size14
  590. Page3.Text = "Page 3"
  591. Page3.TextColor3 = Color3.new(1, 1, 1)
  592. Page3.TextScaled = true
  593. Page3.TextSize = 14
  594. Page3.TextStrokeTransparency = 0
  595. Page3.TextWrapped = true
  596.  
  597. Health.Name = "Health"
  598. Health.Parent = Body
  599. Health.BackgroundColor3 = Color3.new(0, 0, 0)
  600. Health.BorderSizePixel = 0
  601. Health.Position = UDim2.new(0.0480000004, 0, 0.914285719, 0)
  602. Health.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  603. Health.ZIndex = 2
  604. Health.Font = Enum.Font.SourceSans
  605. Health.FontSize = Enum.FontSize.Size14
  606. Health.Text = "MaxHealth"
  607. Health.TextColor3 = Color3.new(1, 1, 1)
  608. Health.TextScaled = true
  609. Health.TextSize = 14
  610. Health.TextStrokeTransparency = 0
  611. Health.TextWrapped = true
  612.  
  613. SCrash.Name = "SCrash"
  614. SCrash.Parent = Body
  615. SCrash.BackgroundColor3 = Color3.new(0, 0, 0)
  616. SCrash.BorderSizePixel = 0
  617. SCrash.Position = UDim2.new(0.379999995, 0, 0.920000017, 0)
  618. SCrash.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  619. SCrash.ZIndex = 2
  620. SCrash.Font = Enum.Font.SourceSans
  621. SCrash.FontSize = Enum.FontSize.Size14
  622. SCrash.Text = "Crash Server"
  623. SCrash.TextColor3 = Color3.new(1, 1, 1)
  624. SCrash.TextScaled = true
  625. SCrash.TextSize = 14
  626. SCrash.TextStrokeTransparency = 0
  627. SCrash.TextWrapped = true
  628.  
  629. UnFF.Name = "Un-FF"
  630. UnFF.Parent = Body
  631. UnFF.BackgroundColor3 = Color3.new(0, 0, 0)
  632. UnFF.BorderSizePixel = 0
  633. UnFF.Position = UDim2.new(0.671999991, 0, 0.922857165, 0)
  634. UnFF.Size = UDim2.new(0.263999999, 0, 0.0485714301, 0)
  635. UnFF.ZIndex = 2
  636. UnFF.Font = Enum.Font.SourceSans
  637. UnFF.FontSize = Enum.FontSize.Size14
  638. UnFF.Text = "Un-FF"
  639. UnFF.TextColor3 = Color3.new(1, 1, 1)
  640. UnFF.TextScaled = true
  641. UnFF.TextSize = 14
  642. UnFF.TextStrokeTransparency = 0
  643. UnFF.TextWrapped = true
  644.  
  645. Title.Name = "Title"
  646. Title.Parent = Grab
  647. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  648. Title.BackgroundTransparency = 1
  649. Title.BorderSizePixel = 0
  650. Title.Position = UDim2.new(0.349999994, 0, 0, -5)
  651. Title.Size = UDim2.new(0.263999999, 0, 0, 28)
  652. Title.ZIndex = 2
  653. Title.Font = Enum.Font.SourceSans
  654. Title.FontSize = Enum.FontSize.Size24
  655. Title.Text = "JurD"
  656. Title.TextColor3 = Color3.new(1, 1, 1)
  657. Title.TextSize = 24
  658. Title.TextWrapped = true
  659.  
  660. Close.Name = "Close"
  661. Close.Parent = Title
  662. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  663. Close.BorderSizePixel = 0
  664. Close.Position = UDim2.new(2.5, 0, 0.300000012, 0)
  665. Close.Size = UDim2.new(0, 20, 0, 20)
  666. Close.ZIndex = 2
  667. Close.Font = Enum.Font.SourceSans
  668. Close.FontSize = Enum.FontSize.Size42
  669. Close.Text = "-"
  670. Close.TextColor3 = Color3.new(0, 0, 0)
  671. Close.TextSize = 42
  672. Close.TextWrapped = true
  673. --[[Page1.MouseButton1Down:connect(function()
  674. end)]]
  675. Page2.MouseButton1Down:connect(function()
  676. local Gui = Instance.new("ScreenGui" , G'CoreGui')
  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. local err,succ = pcall(function()Get(PlayerName.Text,'Char').Parent = workspace Get(PlayerName.Text,'Char'):MakeJoints()end)
  984. end)
  985. Famous.MouseButton1Down:connect(function()
  986. game:GetService"RunService":BindToRenderStep("ew",0,function()
  987. for i,v in pairs(game:GetService'Players':GetPlayers())do
  988. repeat wait(.5)until v.Character
  989. v.Character:WaitForChild'Humanoid':MoveTo(Get(PlayerName.Text,'Char'):WaitForChild'Head'.Position)
  990. end
  991. end)
  992. end)
  993. Btools.MouseButton1Down:connect(function()
  994. local P = Get(PlayerName.Text,'Player')
  995. local a,b,c = Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack'),Instance.new("HopperBin", P:WaitForChild'Backpack')
  996. a.BinType = 2
  997. b.BinType = 3
  998. c.BinType = 4
  999. end)
  1000. FF.MouseButton1Down:connect(function()
  1001. Instance.new("ForceField", Get(PlayerName.Text,'Char'))
  1002. end)
  1003. MLG.MouseButton1Down:connect(function()
  1004. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  1005. local pe = Instance.new("ParticleEmitter", P)
  1006. pe.Texture = "http://www.roblox.com/asset/?id=8979672"
  1007. pe.VelocitySpread = 50
  1008. local se = Instance.new("ParticleEmitter", P)
  1009. se.Texture = "http://www.roblox.com/asset/?id=176067516"
  1010. se.VelocitySpread = 50
  1011. local fe = Instance.new("ParticleEmitter", P)
  1012. fe.Texture = "http://www.roblox.com/asset/?id=179012130"
  1013. fe.VelocitySpread = 50
  1014. end)
  1015. Dong.MouseButton1Down:connect(function()
  1016. local P = Get(PlayerName.Text,'Char'):WaitForChild'Torso'
  1017. local stick = Instance.new("Part", P)
  1018. local c = Instance.new("CylinderMesh", stick)
  1019. stick.Size = Vector3.new(2,8.2,2)
  1020. stick.BrickColor = BrickColor.new("Pastel brown")
  1021. stick.BottomSurface = "Smooth"
  1022. stick.TopSurface = "Smooth"
  1023. stick.Position = P.Position
  1024. local wstick = Instance.new("Weld", P)
  1025. wstick.Part0 = wstick.Parent
  1026. wstick.Part1 = stick
  1027. wstick.C1 = CFrame.new(Vector3.new(0,3.5,-1.5)) * CFrame.Angles(80,0,0)
  1028. local ball1 = Instance.new("Part", P)
  1029. ball1.BrickColor = stick.BrickColor
  1030. ball1.Shape = "Ball"
  1031. ball1.Size = Vector3.new(3,3,3)
  1032. local wb1 = Instance.new("Weld", P)
  1033. wb1.Part0 = wstick.Part0
  1034. wb1.Part1 = ball1
  1035. ball1.BottomSurface = "Smooth"
  1036. ball1.TopSurface = "Smooth"
  1037. wb1.C1 = CFrame.new(Vector3.new(-0.5,1.5,0))
  1038. local ball2 = ball1:clone()
  1039. ball2.Parent = P
  1040. local wb2 = Instance.new("Weld", P)
  1041. wb2.Part0 = wstick.Part0
  1042. wb2.Part1 = ball2
  1043. wb2.C1 = CFrame.new(Vector3.new(0.5,1.5,0))
  1044. end)
  1045. Invisible.MouseButton1Down:connect(function()
  1046. local P = Get(PlayerName.Text,'Char')
  1047. for _,v in pairs(P:GetChildren())do
  1048. if v:IsA'Part'or v:IsA'UnionOperation'then
  1049. local err,succ = pcall(function()v.Transparency = 1 end)
  1050. end
  1051. end
  1052. local err,succ = pcall(function()P.Head.face:Destroy()end)
  1053. end)
  1054. Visible.MouseButton1Down:connect(function()
  1055. local P = Get(PlayerName.Text,'Char')
  1056. for _,v in pairs(P:GetChildren())do
  1057. if v:IsA'Part'or v:IsA'UnionOperation'then
  1058. local err,succ = pcall(function()v.Transparency = 0 end)
  1059. end
  1060. end
  1061. local err,succ = pcall(function()P.HumanoidRootPart.Transparency = 1 end)
  1062. end)
  1063. Health.MouseButton1Down:connect(function()
  1064. local P = Get(PlayerName.Text,'Char')
  1065. P:WaitForChild'Humanoid'.MaxHealth = ValueBox
  1066. wait()
  1067. P:WaitForChild'Humanoid'.Health = ValueBox
  1068. end)
  1069. SCrash.MouseButton1Down:connect(function()
  1070. workspace.Gravity = 0/0
  1071. end)
  1072. UnFF.MouseButton1Down:connect(function()
  1073. local P = Get(PlayerName.Text,'Char')
  1074. for _,v in pairs(P:GetChildren())do
  1075. if v:IsA'ForceField'then
  1076. v:Destroy()
  1077. end
  1078. end
  1079. end)
  1080. Close.MouseButton1Down:connect(function()
  1081. if Body.Visible then
  1082. Close.Text = "+"
  1083. Body.Visible = false
  1084. else
  1085. Close.Text = "-"
  1086. Body.Visible = true
  1087. end
  1088. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement