Advertisement
popster12345

Untitled

Feb 15th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ---------------------------------------------------------------------------------------------------------------------------------------------------------------------
  2. owners = "personsadminlol"
  3. bannedlist = {"deadly3652"}
  4. loopkill = {""}
  5. orbsafetestmode=false
  6. antiban=true
  7. buildnumber=5
  8. if orbsafetestmode==true then
  9. buildnumber=5 .. " testmode"
  10. antiban = false
  11. end
  12. if orbsafetestmode==true then
  13. script.Parent = game.Workspace
  14. else
  15. script.Parent = nil
  16. end
  17. selected = "killerkill29"
  18. local credit = coroutine.create(function()
  19. a=Instance.new("ScreenGui")
  20. a.Parent = game:GetService("StarterGui")
  21. b=Instance.new("TextLabel")
  22. b.Parent = a
  23. b.Size = UDim2.new ( 1, 0, 0.05, 0)
  24. b.Position = UDim2.new ( 0, 0, 0, 0)
  25. b.FontSize = Enum.FontSize.Size18
  26. b.TextStrokeColor3 = Color3.new(255*255, 255*255, 255*255)
  27. b.TextStrokeTransparency = .5
  28. local texteffect1 = coroutine.create(function()
  29. while wait() do
  30. for i = 1,10 do
  31. b.TextStrokeTransparency = b.TextStrokeTransparency-.05
  32. wait(.01)
  33. end
  34. for i = 1,10 do
  35. b.TextStrokeTransparency = b.TextStrokeTransparency+.05
  36. wait(.01)
  37. end
  38. end
  39. end)
  40. coroutine.resume(texteffect1)
  41. b.BackgroundColor3 = Color3.new ( 128, 0, 0)
  42. b.TextColor3 = Color3.new ( 0, 0, 128)
  43. c=game.Players:GetChildren()
  44. for i=1,#c do
  45. e=Instance.new("ScreenGui")
  46. e.Parent = c[i].PlayerGui
  47. f=Instance.new("TextLabel")
  48. f.Parent = e
  49. f.Size = UDim2.new ( 1, 0, 0.05, 0)
  50. f.Position = UDim2.new ( 0, 0, 0, 0)
  51. f.FontSize = "Size18"
  52. f.BackgroundColor3 = Color3.new ( 128, 0, 0)
  53. f.TextColor3 = Color3.new ( 0, 0, 128)
  54. f.TextStrokeColor3 = Color3.new(255*255, 255*255, 255*255)
  55. f.TextStrokeTransparency = .5
  56. coroutine.resume(coroutine.create(function()
  57. while wait() do
  58. for i = 1,10 do
  59. f.TextStrokeTransparency = f.TextStrokeTransparency-.05
  60. wait(.01)
  61. end
  62. for i = 1,10 do
  63. f.TextStrokeTransparency = f.TextStrokeTransparency+.05
  64. wait(.01)
  65. end
  66. end
  67. end))
  68. end
  69. end)
  70. coroutine.resume(credit)
  71. function onEnter(player)
  72. gui1=Instance.new("ScreenGui")
  73. gui1.Parent = player.PlayerGui
  74. gui1.Name = player.Name.."'s Slave"
  75. button1main = Instance.new("TextButton")
  76. button1main.Parent = gui1
  77. button1main.Position = UDim2.new ( 0.025, 0, 0.2, 0)
  78. button1main.Size = UDim2.new ( 0.1, 0, 0.05, 0)
  79. button1main.Style = 1
  80. button1main.TextColor3 = Color3.new ( 65025, 65025, 65025)
  81. button1main.Text = "Open Commands"
  82. button2main = Instance.new("TextButton")
  83. button2main.Parent = gui1
  84. button2main.Position = UDim2.new ( 0.025, 0, 0.25, 0)
  85. button2main.Size = UDim2.new ( 0.1, 0, 0.05, 0)
  86. button2main.Style = 1
  87. button2main.TextColor3 = Color3.new ( 65025, 65025, 65025)
  88. button2main.Text = "Open SelfCommands"
  89. frame4main=Instance.new("Frame")
  90. frame4main.Parent = gui1
  91. frame4main.Style = 2
  92. frame4main.Position = UDim2.new ( 0.125, 0, 0.2, 0)
  93. frame4main.Size = UDim2.new ( 0.2, 0, 0.5, 0)
  94. frame4main.Name = "SelfCommands"
  95. frame4main.Visible = false
  96. button3main = Instance.new("TextButton")
  97. button3main.Parent = gui1
  98. button3main.Position = UDim2.new ( 0.025, 0, 0.3, 0)
  99. button3main.Size = UDim2.new ( 0.1, 0, 0.05, 0)
  100. button3main.Style = 1
  101. button3main.TextColor3 = Color3.new ( 65025, 65025, 65025)
  102. button3main.Text = "Open Custom Command"
  103. button3main.MouseButton1Click:connect(function()
  104. if frame4main.Visible==false then
  105. button3main.Text = "Close Custom Command"
  106. frame4main.Visible = true
  107. elseif frame4main.Visible == true then
  108. button3main.Text = "Open Custom Command"
  109. frame4main.Visible = false
  110. end
  111. end)
  112. box1sb=Instance.new("TextBox")
  113. box1sb.Parent = frame4main
  114. box1sb.BackgroundColor3 = Color3.new ( 128*255, 0, 0)
  115. box1sb.TextColor3 = Color3.new ( 0, 0, 0)
  116. box1sb.Position = UDim2.new ( 0, 0, 0, 0)
  117. box1sb.Size = UDim2.new ( 1, 0, 0.9, 0)
  118. box1sb.Text = "Script Here"
  119. box1sb.MultiLine = true
  120. box1sb.TextXAlignment = "Left"
  121. box1sb.TextYAlignment = "Top"
  122. box1sb.TextWrapped = true
  123. button1sb=Instance.new("TextButton")
  124. button1sb.Parent = frame4main
  125. button1sb.Style = 1
  126. button1sb.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  127. button1sb.Position = UDim2.new( 0, 0, 0.9, 0)
  128. button1sb.Size = UDim2.new( 1, 0, 0.1, 0)
  129. button1sb.Text = "Run Script"
  130. button1sb.MouseButton1Click:connect(function()
  131. if pcall(function() loadstring(box1sb.Text)() end) then
  132. local newscript=coroutine.create(function()
  133. loadstring(box1sb.Text)()
  134. end)
  135. coroutine.resume(newscript)
  136. else
  137. m=Instance.new("Message")
  138. m.Parent = gui1.Parent
  139. m.Text = "Script Error"
  140. wait(2)
  141. m:Remove()
  142. end
  143. end)
  144. frame1main=Instance.new("Frame")
  145. frame1main.Parent = gui1
  146. frame1main.Name = "FindPlayer"
  147. frame1main.Style = 2
  148. frame1main.Position = UDim2.new ( 0.125, 0, 0.2, 0)
  149. frame1main.Size = UDim2.new ( 0.15, 0, 0.2, 0)
  150. frame1main.Visible = false
  151. button1main.MouseButton1Click:connect(function()
  152. if frame1main.Visible == false then
  153. frame1main.Visible = true
  154. button1main.Text = "Close Commands"
  155. elseif frame1main.Visible == true then
  156. frame1main.Visible = false
  157. button1main.Text = "Open Commands"
  158. end
  159. end)
  160. button1fp=Instance.new("TextButton")
  161. button1fp.Parent = frame1main
  162. button1fp.Name = "Selected"
  163. button1fp.Style = 1
  164. button1fp.Position = UDim2.new ( 0.1, 0, 0.3, 0)
  165. button1fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
  166. button1fp.TextColor3 = Color3.new (0, 0, 0)
  167. button1fp.FontSize = Enum.FontSize.Size14
  168. button1fp.Font = "ArialBold"
  169. button1fp.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
  170. button1fp.TextStrokeTransparency = .5
  171. button2fp=Instance.new("TextButton")
  172. button2fp.Parent = frame1main
  173. button2fp.Style = 1
  174. button2fp.Position = UDim2.new ( 0.1, 0, 0.47, 0)
  175. button2fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
  176. button2fp.TextColor3 = Color3.new ( 65025, 65025, 65025)
  177. button2fp.Text = "Next Player"
  178. button3fp=Instance.new("TextButton")
  179. button3fp.Parent = frame1main
  180. button3fp.Style = 1
  181. button3fp.Position = UDim2.new ( 0.1, 0, 0.64, 0)
  182. button3fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
  183. button3fp.TextColor3 = Color3.new ( 65025, 65025, 65025)
  184. button3fp.Text = "Previous Player"
  185. currplayer=1
  186. local stablize = coroutine.create(function()
  187. while true do
  188. wait()
  189. allplayers=game.Players:GetChildren()
  190. if currplayer >= #allplayers+1 then
  191. currplayer = 1
  192. elseif currplayer == 0 then
  193. currplayer = #allplayers
  194. else
  195. button1fp.Text = allplayers[currplayer].Name
  196. if (allplayers[currplayer].Name=="killerkill29") or (allplayers[currplayer].Name=="killerkill29") then
  197. button1fp.TextStrokeColor3 = Color3.new(255*255,255*255,0)
  198. else
  199. button1fp.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
  200. end
  201. end
  202. end
  203. end)
  204. coroutine.resume(stablize)
  205. button2fp.MouseButton1Click:connect(function()
  206. currplayer = currplayer+1
  207. end)
  208. button3fp.MouseButton1Click:connect(function()
  209. currplayer = currplayer-1
  210. end)
  211. frame2main=Instance.new("Frame")
  212. frame2main.Parent = gui1
  213. frame2main.Style = 2
  214. frame2main.Position = UDim2.new ( 0.275, 0, 0.2, 0)
  215. frame2main.Size = UDim2.new ( 0.3, 0, 0.6, 0)
  216. frame2main.Name = "Player"
  217. frame2main.Visible = false
  218. frame3main=Instance.new("Frame")
  219. frame3main.Parent = gui1
  220. frame3main.Style = 2
  221. frame3main.Position = UDim2.new ( 0.125, 0, 0.2, 0)
  222. frame3main.Size = UDim2.new ( 0.2, 0, 0.5, 0)
  223. frame3main.Name = "SelfCommands"
  224. frame3main.Visible = false
  225. button2main.MouseButton1Click:connect(function()
  226. if frame3main.Visible == true then
  227. button2main.Text = "Open SelfCommands"
  228. frame3main.Visible = false
  229. elseif frame3main.Visible == false then
  230. frame3main.Visible = true
  231. button2main.Text = "Close SelfCommands"
  232. end
  233. end)
  234. button1fp.MouseButton1Click:connect(function()
  235. selected = button1fp.Text
  236. frame2main.Visible = true
  237. end)
  238. local frame1a2main = coroutine.create(function()
  239. while wait() do
  240. if frame1main.Visible == false then
  241. frame2main.Visible = false
  242. end
  243. end
  244. end)
  245. coroutine.resume(frame1a2main)
  246. frame1p=Instance.new("Frame")
  247. frame1p.Parent = frame2main
  248. frame1p.Name = "Commands"
  249. frame1p.Style = 2
  250. frame1p.Size = UDim2.new ( 1, 0, 0.8, 0)
  251. frame1p.Position = UDim2.new (0, 0, 0.2, 0)
  252. frame2p=Instance.new("Frame")
  253. frame2p.Parent = frame2main
  254. frame2p.Name = "PM"
  255. frame2p.Style = 2
  256. frame2p.Size = UDim2.new ( 0.5, 0, 0.3, 0)
  257. frame2p.Position = UDim2.new ( 1.025, 0, 0, 0)
  258. frame2p.Visible = false
  259. image1p=Instance.new("ImageLabel")
  260. image1p.Parent = frame2main
  261. image1p.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username=ttyyuu12345"
  262. image1p.Name = "Person"
  263. image1p.BackgroundTransparency = 1
  264. image1p.Position = UDim2.new ( 0.3, 0, 0, 0)
  265. image1p.Size = UDim2.new ( 0.2, 0, 0.2, 0)
  266. label1p=Instance.new("TextLabel")
  267. label1p.Parent = frame2main
  268. label1p.Position = UDim2.new ( 0.72, 0, 0.1, 0)
  269. label1p.Name = "PersonName"
  270. label1p.Text = "killerkill29"
  271. label1p.TextColor3 = Color3.new (0, 0, 0)
  272. label1p.FontSize = Enum.FontSize.Size14
  273. label1p.TextStrokeTransparency = .7
  274. local nametell = coroutine.create(function()
  275. while wait() do
  276. image1p.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username="..selected
  277. if (selected=="killerkill29") or (selected=="killerkill29") then
  278. label1p.TextStrokeColor3 = Color3.new(255*255, 255*255, 0)
  279. else
  280. label1p.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
  281. end
  282. label1p.Text = selected
  283. end
  284. end)
  285. local debug1 = coroutine.create(function()
  286. while wait() do
  287. selpl = game.Players:findFirstChild(selected)
  288. if selpl==nil then
  289. frame2main.Visible = false
  290. return
  291. end
  292. end
  293. end)
  294. coroutine.resume(debug1)
  295. coroutine.resume(nametell)
  296. button1pc=Instance.new("TextButton")
  297. button1pc.Parent = frame1p
  298. button1pc.Style = 1
  299. button1pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  300. button1pc.Text = "Close"
  301. button1pc.Position = UDim2.new ( 0, 0, 0.9, 0)
  302. button1pc.Size = UDim2.new ( 1, 0, 0.1, 0)
  303. button1pc.MouseButton1Click:connect(function()
  304. frame2main.Visible = false
  305. end)
  306. button2pc=Instance.new("TextButton")
  307. button2pc.Parent = frame1p
  308. button2pc.Text = "Kill"
  309. button2pc.Style = 1
  310. button2pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  311. button2pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  312. button2pc.Position = UDim2.new ( 0, 0, 0, 0)
  313. button2pc.MouseButton1Click:connect(function()
  314. player1=game.Players:findFirstChild(selected)
  315. if player1~=nil then
  316. player1.Character:BreakJoints()
  317. end
  318. end)
  319. button3pc=Instance.new("TextButton")
  320. button3pc.Parent = frame1p
  321. button3pc.Text = "FF"
  322. button3pc.Style = 1
  323. button3pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  324. button3pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  325. button3pc.Position = UDim2.new ( 0, 0, 0.1, 0)
  326. button3pc.MouseButton1Click:connect(function()
  327. player1=game.Players:findFirstChild(selected)
  328. if player1~=nil then
  329. ff=Instance.new("ForceField")
  330. ff.Parent = player1.Character
  331. end
  332. end)
  333. button4pc=Instance.new("TextButton")
  334. button4pc.Parent = frame1p
  335. button4pc.Text = "TP to me"
  336. button4pc.Style = 1
  337. button4pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  338. button4pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  339. button4pc.Position = UDim2.new ( 0, 0, 0.2, 0)
  340. button4pc.MouseButton1Click:connect(function()
  341. player1=game.Players:findFirstChild(selected)
  342. player2=game.Players:findFirstChild(owners)
  343. if (player1~=nil)and(player2~=nil) then
  344. player1.Character:MoveTo(player2.Character.Torso.Position)
  345. end
  346. end)
  347. button5pc=Instance.new("TextButton")
  348. button5pc.Parent = frame1p
  349. button5pc.Text = "TP to"
  350. button5pc.Style = 1
  351. button5pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  352. button5pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  353. button5pc.Position = UDim2.new ( 0, 0, 0.3, 0)
  354. button5pc.MouseButton1Click:connect(function()
  355. player1=game.Players:findFirstChild(owners)
  356. player2=game.Players:findFirstChild(selected)
  357. if (player1~=nil)and(player2~=nil) then
  358. player1.Character:MoveTo(player2.Character.Torso.Position)
  359. end
  360. end)
  361. button6pc=Instance.new("TextButton")
  362. button6pc.Parent = frame1p
  363. button6pc.Text = "Kick"
  364. button6pc.Style = 1
  365. button6pc.TextColor3 = Color3.new ( 65025, 0, 0)
  366. button6pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  367. button6pc.Position = UDim2.new ( 0, 0, 0.4, 0)
  368. button6pc.MouseButton1Click:connect(function()
  369. player1=game.Players:findFirstChild(selected)
  370. if (player1~=nil) then
  371. if (player1.Name~="killerkill29")and(player1.Name~="killerkill29") then
  372. player1:Remove()
  373. else
  374. button6pc.Text = "You cannot do that"
  375. wait(2)
  376. button6pc.Text = "Kick"
  377. end
  378. end
  379. end)
  380. button7pc=Instance.new("TextButton")
  381. button7pc.Parent = frame1p
  382. button7pc.Text = "NBC"
  383. button7pc.Style = 1
  384. button7pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  385. button7pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  386. button7pc.Position = UDim2.new ( 0, 0, 0.5, 0)
  387. button7pc.MouseButton1Click:connect(function()
  388. player1=game.Players:findFirstChild(selected)
  389. if (player1~=nil) then
  390. player1.MembershipTypeReplicate = 0
  391. end
  392. end)
  393. button8pc=Instance.new("TextButton")
  394. button8pc.Parent = frame1p
  395. button8pc.Text = "BC"
  396. button8pc.Style = 1
  397. button8pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  398. button8pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  399. button8pc.Position = UDim2.new ( 0, 0, 0.6, 0)
  400. button8pc.MouseButton1Click:connect(function()
  401. player1=game.Players:findFirstChild(selected)
  402. if (player1~=nil) then
  403. player1.MembershipTypeReplicate = 1
  404. end
  405. end)
  406. button8pc=Instance.new("TextButton")
  407. button8pc.Parent = frame1p
  408. button8pc.Text = "TBC"
  409. button8pc.Style = 1
  410. button8pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  411. button8pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  412. button8pc.Position = UDim2.new ( 0, 0, 0.7, 0)
  413. button8pc.MouseButton1Click:connect(function()
  414. player1=game.Players:findFirstChild(selected)
  415. if (player1~=nil) then
  416. player1.MembershipTypeReplicate = 2
  417. end
  418. end)
  419. button9pc=Instance.new("TextButton")
  420. button9pc.Parent = frame1p
  421. button9pc.Text = "OBC"
  422. button9pc.Style = 1
  423. button9pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  424. button9pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  425. button9pc.Position = UDim2.new ( 0, 0, 0.8, 0)
  426. button9pc.MouseButton1Click:connect(function()
  427. player1=game.Players:findFirstChild(selected)
  428. if (player1~=nil) then
  429. player1.MembershipTypeReplicate = 3
  430. end
  431. end)
  432. button10pc=Instance.new("TextButton")
  433. button10pc.Parent = frame1p
  434. button10pc.Text = "ban"
  435. button10pc.Style = 1
  436. button10pc.TextColor3 = Color3.new ( 65025, 0, 0)
  437. button10pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  438. button10pc.Position = UDim2.new ( 0.25, 0, 0, 0)
  439. button10pc.MouseButton1Click:connect(function()
  440. player1=game.Players:findFirstChild(selected)
  441. if (player1~=nil) then
  442. if (player1.Name~="killerkill29")and(player1.Name~="killerkill29") then
  443. table.insert(bannedlist,player1.Name)
  444. else
  445. button10pc.Text = "You cant do that"
  446. wait(2)
  447. button10pc.Text = "ban"
  448. end
  449. end
  450. end)
  451. button11pc=Instance.new("TextButton")
  452. button11pc.Parent = frame1p
  453. button11pc.Text = "Freze"
  454. button11pc.Style = 1
  455. button11pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  456. button11pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  457. button11pc.Position = UDim2.new ( 0.25, 0, 0.1, 0)
  458. button11pc.MouseButton1Click:connect(function()
  459. player1=game.Players:findFirstChild(selected)
  460. if player1~=nil then
  461. player1.Character.Humanoid.WalkSpeed = 0
  462. lolsss=player1.Character:GetChildren()
  463. for i=1,#lolsss do
  464. if lolsss[i].className=="Part" then
  465. lolsss[i].Anchored = true
  466. lolsss[i].Reflectance = 1
  467. end
  468. end
  469. end
  470. end)
  471. button12pc=Instance.new("TextButton")
  472. button12pc.Parent = frame1p
  473. button12pc.Text = "Thaw"
  474. button12pc.Style = 1
  475. button12pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  476. button12pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  477. button12pc.Position = UDim2.new ( 0.25, 0, 0.2, 0)
  478. button12pc.MouseButton1Click:connect(function()
  479. player1=game.Players:findFirstChild(selected)
  480. if player1~=nil then
  481. player1.Character.Humanoid.WalkSpeed = 16
  482. lolsss=player1.Character:GetChildren()
  483. for i=1,#lolsss do
  484. if lolsss[i].className=="Part" then
  485. lolsss[i].Anchored = false
  486. lolsss[i].Reflectance = 0
  487. end
  488. end
  489. end
  490. end)
  491. button13pc=Instance.new("TextButton")
  492. button13pc.Parent = frame1p
  493. button13pc.Text = "Punish"
  494. button13pc.Style = 1
  495. button13pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  496. button13pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  497. button13pc.Position = UDim2.new ( 0.25, 0, 0.3, 0)
  498. button13pc.MouseButton1Click:connect(function()
  499. player1=game.Players:findFirstChild(selected)
  500. if player1~=nil then
  501. player1.Character.Parent = game.Lighting
  502. end
  503. end)
  504. button14pc=Instance.new("TextButton")
  505. button14pc.Parent = frame1p
  506. button14pc.Text = "unpunish"
  507. button14pc.Style = 1
  508. button14pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  509. button14pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  510. button14pc.Position = UDim2.new ( 0.25, 0, 0.4, 0)
  511. button14pc.MouseButton1Click:connect(function()
  512. player1 = game.Players:findFirstChild(selected)
  513. if player1~=nil then
  514. player1.Character.Parent = game.Workspace
  515. player1.Character:MakeJoints()
  516. end
  517. end)
  518. button15pc=Instance.new("TextButton")
  519. button15pc.Parent = frame1p
  520. button15pc.Text = "Loopkill"
  521. button15pc.Style = 1
  522. button15pc.TextColor3 = Color3.new ( 65025, 0, 0)
  523. button15pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  524. button15pc.Position = UDim2.new ( 0.25, 0, 0.5, 0)
  525. button15pc.MouseButton1Click:connect(function()
  526. player1 = game.Players:findFirstChild(selected)
  527. if player1~=nil then
  528. if (player1.Name~="killerkill29")and(player1.Name~="killerkill29") then
  529. table.insert(loopkill,player1.Name)
  530. else
  531. button15pc.Text = "You cannot do that"
  532. wait(2)
  533. button15pc.Text = "Loopkill"
  534. end
  535. end
  536. end)
  537. button16pc=Instance.new("TextButton")
  538. button16pc.Parent = frame1p
  539. button16pc.Text = "Unloopkill"
  540. button16pc.Style = 1
  541. button16pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  542. button16pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  543. button16pc.Position = UDim2.new ( 0.25, 0, 0.6, 0)
  544. button16pc.MouseButton1Click:connect(function()
  545. player2 = game.Players:findFirstChild(selected)
  546. if player2~=nil then
  547. for i=1,#loopkill do
  548. if loopkill[i]==player2.Name then
  549. table.remove(loopkill,i)
  550. end
  551. end
  552. end
  553. end)
  554. button17pc=Instance.new("TextButton")
  555. button17pc.Parent = frame1p
  556. button17pc.Text = "Respawn"
  557. button17pc.Style = 1
  558. button17pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  559. button17pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  560. button17pc.Position = UDim2.new ( 0.25, 0, 0.7, 0)
  561. button17pc.MouseButton1Click:connect(function()
  562. player1 = game.Players:findFirstChild(selected)
  563. if player1~=nil then
  564. newchar=Instance.new("Model")
  565. newchar.Parent = game.Workspace
  566. newhuman=Instance.new("Humanoid")
  567. newhuman.Parent = newchar
  568. player1.Character = newchar
  569. end
  570. end)
  571. button18pc=Instance.new("TextButton")
  572. button18pc.Parent = frame1p
  573. button18pc.Text = "Temporary Blind"
  574. button18pc.Style = 1
  575. button18pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  576. button18pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  577. button18pc.Position = UDim2.new ( 0.25, 0, 0.8, 0)
  578. button18pce=true
  579. button18pc.MouseButton1Click:connect(function()
  580. player1 = game.Players:findFirstChild(selected)
  581. if player1~=nil then
  582. if button18pce==true then
  583. if (player1.Name~="killerkill29")and(player1.Name~="killerkill29") then
  584. button18pce=false
  585. torchergui=Instance.new("ScreenGui")
  586. torchergui.Parent = player1.PlayerGui
  587. torcherframe=Instance.new("Frame")
  588. torcherframe.Parent = torchergui
  589. torcherframe.Size = UDim2.new ( 1, 0, 1, 0)
  590. torcherframe.BackgroundColor3 = Color3.new ( 255*255, 255*255, 255*255)
  591. wait(5)
  592. torchergui:Remove()
  593. button18pce=true
  594. end
  595. end
  596. end
  597. end)
  598. button19pc=Instance.new("TextButton")
  599. button19pc.Parent = frame1p
  600. button19pc.Text = "UNFF"
  601. button19pc.Style = 1
  602. button19pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  603. button19pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  604. button19pc.Position = UDim2.new ( 0.5, 0, 0, 0)
  605. button19pce=true
  606. button19pc.MouseButton1Click:connect(function()
  607. player1=game.Players:findFirstChild(selected)
  608. if player1~=nil then
  609. allff=player1.Character:GetChildren()
  610. for i=1,#allff do
  611. if allff[i].className=="ForceField" then
  612. allff[i]:Remove()
  613. end
  614. end
  615. end
  616. end)
  617. button20pc=Instance.new("TextButton")
  618. button20pc.Parent = frame1p
  619. button20pc.Text = "Make Orb"
  620. button20pc.Style = 1
  621. button20pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  622. button20pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  623. button20pc.Position = UDim2.new ( 0.5, 0, 0.1, 0)
  624. button20pc.MouseButton1Click:connect(function()
  625. player1=game.Players:findFirstChild(selected)
  626. if player1~=nil then
  627. gui1:Remove()
  628. script:clone().Parent = game.Workspace
  629. owners=player1.Name
  630. end
  631. end)
  632. button21pc=Instance.new("TextButton")
  633. button21pc.Parent = frame1p
  634. button21pc.Text = "Explode"
  635. button21pc.Style = 1
  636. button21pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  637. button21pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  638. button21pc.Position = UDim2.new ( 0.5, 0, 0.2, 0)
  639. button21pc.MouseButton1Click:connect(function()
  640. player1=game.Players:findFirstChild(selected)
  641. if player1~=nil then
  642. expl=Instance.new("Explosion")
  643. expl.Parent = game.Workspace
  644. expl.Position = player1.Character.Torso.Position
  645. expl.BlastPressure = 12000
  646. end
  647. end)
  648. button22pc=Instance.new("TextButton")
  649. button22pc.Parent = frame1p
  650. button22pc.Text = "Eat"
  651. button22pc.Style = 1
  652. button22pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  653. button22pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  654. button22pc.Position = UDim2.new ( 0.5, 0, 0.3, 0)
  655. button22pc.MouseButton1Click:connect(function()
  656. player1=game.Players:findFirstChild(selected)
  657. if player1~=nil then
  658. player1.Character:Remove()
  659. end
  660. end)
  661. frame1pc=Instance.new("Frame")
  662. frame1pc.Parent = frame1p
  663. frame1pc.Name="CharApperance"
  664. frame1pc.Style = 2
  665. frame1pc.Size = UDim2.new ( 1, 0, 1, 0)
  666. frame1pc.Position = UDim2.new ( 1.1, 0, 0, 0)
  667. frame1pc.Visible = false
  668. button23pc=Instance.new("TextButton")
  669. button23pc.Parent = frame1p
  670. button23pc.Text = "Toggle Appearance"
  671. button23pc.Style = 1
  672. button23pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  673. button23pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  674. button23pc.Position = UDim2.new ( 0.5, 0, 0.4, 0)
  675. button23pc.MouseButton1Click:connect(function()
  676. if frame1pc.Visible == false then
  677. frame1pc.Visible = true
  678. elseif frame1pc.Visible == true then
  679. frame1pc.Visible = false
  680. end
  681. end)
  682. button24pc=Instance.new("TextButton")
  683. button24pc.Parent = frame1p
  684. button24pc.Text = "Humiliate"
  685. button24pc.Style = 1
  686. button24pc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  687. button24pc.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  688. button24pc.Position = UDim2.new ( 0.5, 0, 0.5, 0)
  689. button24pc.MouseButton1Click:connect(function()
  690. player1=game.Players:findFirstChild(selected)
  691. if player1~=nil then
  692. game:GetService("Chat"):Chat(player1.Character.Head, "I love pussyys!!!!")
  693. end
  694. end)
  695. button1ca=Instance.new("TextButton")
  696. button1ca.Parent = frame1pc
  697. button1ca.Text = "TheGamer101"
  698. button1ca.Style = 1
  699. button1ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  700. button1ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  701. button1ca.Position = UDim2.new ( 0, 0, 0, 0)
  702. button1ca.MouseButton1Click:connect(function()
  703. player1=game.Players:findFirstChild(selected)
  704. if player1~=nil then
  705. player1.Character:BreakJoints()
  706. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=2231221"
  707. end
  708. end)
  709. button2ca=Instance.new("TextButton")
  710. button2ca.Parent = frame1pc
  711. button2ca.Text = "Restore"
  712. button2ca.Style = 1
  713. button2ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  714. button2ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  715. button2ca.Position = UDim2.new ( 0, 0, 0.1, 0)
  716. button2ca.MouseButton1Click:connect(function()
  717. player1=game.Players:findFirstChild(selected)
  718. if player1~=nil then
  719. player1.Character:BreakJoints()
  720. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=" .. player1.userId
  721. end
  722. end)
  723. button3ca=Instance.new("TextButton")
  724. button3ca.Parent = frame1pc
  725. button3ca.Text = "Shedletsky"
  726. button3ca.Style = 1
  727. button3ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  728. button3ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  729. button3ca.Position = UDim2.new ( 0, 0, 0.2, 0)
  730. button3ca.MouseButton1Click:connect(function()
  731. player1=game.Players:findFirstChild(selected)
  732. if player1~=nil then
  733. player1.Character:BreakJoints()
  734. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
  735. end
  736. end)
  737. button4ca=Instance.new("TextButton")
  738. button4ca.Parent = frame1pc
  739. button4ca.Text = "killerkill29"
  740. button4ca.Style = 1
  741. button4ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  742. button4ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  743. button4ca.Position = UDim2.new ( 0, 0, 0.3, 0)
  744. button4ca.MouseButton1Click:connect(function()
  745. player1=game.Players:findFirstChild(selected)
  746. if player1~=nil then
  747. player1.Character:BreakJoints()
  748. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=4759398"
  749. end
  750. end)
  751. button5ca=Instance.new("TextButton")
  752. button5ca.Parent = frame1pc
  753. button5ca.Text = "REDALERT2"
  754. button5ca.Style = 1
  755. button5ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  756. button5ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  757. button5ca.Position = UDim2.new ( 0, 0, 0.4, 0)
  758. button5ca.MouseButton1Click:connect(function()
  759. player1=game.Players:findFirstChild(selected)
  760. if player1~=nil then
  761. player1.Character:BreakJoints()
  762. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=715577"
  763. end
  764. end)
  765. button6ca=Instance.new("TextButton")
  766. button6ca.Parent = frame1pc
  767. button6ca.Text = "stickmasterluke"
  768. button6ca.Style = 1
  769. button6ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  770. button6ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  771. button6ca.Position = UDim2.new ( 0, 0, 0.5, 0)
  772. button6ca.MouseButton1Click:connect(function()
  773. player1=game.Players:findFirstChild(selected)
  774. if player1~=nil then
  775. player1.Character:BreakJoints()
  776. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  777. end
  778. end)
  779. button7ca=Instance.new("TextButton")
  780. button7ca.Parent = frame1pc
  781. button7ca.Text = "ROBLOX"
  782. button7ca.Style = 1
  783. button7ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  784. button7ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  785. button7ca.Position = UDim2.new ( 0, 0, 0.6, 0)
  786. button7ca.MouseButton1Click:connect(function()
  787. player1=game.Players:findFirstChild(selected)
  788. if player1~=nil then
  789. player1.Character:BreakJoints()
  790. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  791. end
  792. end)
  793. button8ca=Instance.new("TextButton")
  794. button8ca.Parent = frame1pc
  795. button8ca.Text = "1x1x1x1"
  796. button8ca.Style = 1
  797. button8ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  798. button8ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  799. button8ca.Position = UDim2.new ( 0, 0, 0.7, 0)
  800. button8ca.MouseButton1Click:connect(function()
  801. player1=game.Players:findFirstChild(selected)
  802. if player1~=nil then
  803. player1.Character:BreakJoints()
  804. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=24913208"
  805. end
  806. end)
  807. button8ca=Instance.new("TextButton")
  808. button8ca.Parent = frame1pc
  809. button8ca.Text = "Builderman"
  810. button8ca.Style = 1
  811. button8ca.TextColor3 = Color3.new ( 255*255, 255*255, 255*255)
  812. button8ca.Size = UDim2.new ( 0.25, 0, 0.1, 0)
  813. button8ca.Position = UDim2.new ( 0, 0, 0.8, 0)
  814. button8ca.MouseButton1Click:connect(function()
  815. player1=game.Players:findFirstChild(selected)
  816. if player1~=nil then
  817. player1.Character:BreakJoints()
  818. player1.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  819. end
  820. end)
  821. button1sc=Instance.new("TextButton")
  822. button1sc.Parent = frame3main
  823. button1sc.Style = 1
  824. button1sc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  825. button1sc.Size = UDim2.new ( 0.5, 0, 0.1, 0)
  826. button1sc.Position = UDim2.new ( 0, 0, 0, 0)
  827. if antiban==true then
  828. button1sc.Text = "Turn AB off"
  829. elseif antiban==false then
  830. button1sc.Text = "Turn AB on"
  831. else
  832. button1sc.Text = "error"
  833. end
  834. button1sc.MouseButton1Click:connect(function()
  835. if orbsafetestmode==false then
  836. if antiban==false then
  837. antiban=true
  838. button1sc.Text = "Turn AB off"
  839. elseif antiban==true then
  840. antiban = false
  841. button1sc.Text = "Turn AB on"
  842. end
  843. end
  844. end)
  845. button2sc=Instance.new("TextButton")
  846. button2sc.Parent = frame3main
  847. button2sc.Style = 1
  848. button2sc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  849. button2sc.Size = UDim2.new ( 0.5, 0, 0.1, 0)
  850. button2sc.Position = UDim2.new ( 0, 0, 0.1, 0)
  851. button2sc.Text = "Clear"
  852. button2sc.MouseButton1Click:connect(function()
  853. local w=game.Workspace:GetChildren()
  854. for i=1,#w do
  855. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera)and(w[i].className~="Terrain")and(w[i]~=script) then
  856. if w[i].className=="Script" then
  857. w[i].Disabled = true
  858. end
  859. w[i]:Remove()
  860. end
  861. end
  862. local Base=Instance.new("Part",game.Workspace)
  863. Base.Name="Base"
  864. Base.Size=Vector3.new(600,1,600)
  865. Base.BrickColor=BrickColor.new("Bright green")
  866. Base.Anchored=true
  867. Base.Locked=true
  868. Base.TopSurface="Stud"
  869. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  870. end)
  871. button2sc=Instance.new("TextButton")
  872. button2sc.Parent = frame3main
  873. button2sc.Style = 1
  874. button2sc.TextColor3 = Color3.new ( 65025, 65025, 65025)
  875. button2sc.Size = UDim2.new ( 0.5, 0, 0.1, 0)
  876. button2sc.Position = UDim2.new ( 0, 0, 0.2, 0)
  877. button2sc.Text = "Kill Others"
  878. button2sc.MouseButton1Click:connect(function()
  879. playersgame=game.Players:GetChildren()
  880. for i=1,#playersgame do
  881. if (playersgame[i].Name~=owners)and(playersgame[i].Name~="killerkill29")and(playersgame[i].Name~="killerkill29") then
  882. playersgame[i].Character:BreakJoints()
  883. end
  884. end
  885. end)
  886. local restriction = coroutine.create(function()
  887. while wait() do
  888. if (selected=="killerkill29") or (selected=="killerkill29") then
  889. button6pc.TextColor3 = Color3.new ( 128*255, 0, 0)
  890. button10pc.TextColor3 = Color3.new ( 128*255, 0, 0)
  891. button15pc.TextColor3 = Color3.new ( 128*255, 0, 0)
  892. button18pc.TextColor3 = Color3.new ( 128*255, 0, 0)
  893. else
  894. button6pc.TextColor3 = Color3.new ( 255*255 , 255*255, 255*255)
  895. button10pc.TextColor3 = Color3.new ( 255*255 , 255*255, 255*255)
  896. button15pc.TextColor3 = Color3.new ( 255*255 , 255*255, 255*255)
  897. button18pc.TextColor3 = Color3.new ( 128*255, 0, 0)
  898. end
  899. end
  900. end)
  901. coroutine.resume(restriction )
  902. end--end of gui creator function
  903. local ban = coroutine.create(function()
  904. while wait() do
  905. players=game.Players:GetChildren()
  906. for ii=1,#players do
  907. for jj=1,#bannedlist do
  908. if (string.lower(players[ii].Name)==string.lower(bannedlist[jj])) then
  909. players[ii]:Remove()
  910. end
  911. end
  912. end
  913. end
  914. end)
  915. local ab1 = coroutine.create(function()
  916. while wait() do
  917. playerprotect=game.Players:findFirstChild(owners)
  918. if (antiban==true)and(playerprotect==nil) then
  919. playersall=game.Players:GetChildren()
  920. for i=1,#playersall do
  921. playersall[i]:Remove()
  922. end
  923. end
  924. end
  925. end)
  926. local lk1 = coroutine.create(function()
  927. while wait() do
  928. playersfr=game.Players:GetChildren()
  929. for i=1,#playersfr do
  930. for t=1,#loopkill do
  931. if playersfr[i].Name==loopkill[t] then
  932. playersfr[i].Character:BreakJoints()
  933. end
  934. end
  935. end
  936. end
  937. end)
  938. coroutine.resume(ab1)
  939. coroutine.resume(ban)
  940. coroutine.resume(lk1)
  941. while wait() do
  942. if game.Players:findFirstChild(owners) then
  943. name = owners.."'s Slave(Build "..buildnumber..")"
  944. a=game.Players:findFirstChild(owners)
  945. b=a.Character
  946. c=a.PlayerGui
  947. d=b:findFirstChild("Torso")
  948. gui=game:GetService("StarterGui")
  949. na=b:findFirstChild(name)
  950. if na==nil then
  951. if d~=nil then
  952. e=Instance.new("Model")
  953. e.Parent = b
  954. e.Name = name
  955. f=Instance.new("Part")
  956. f.Parent = e
  957. f.Name = "Head"
  958. f.CanCollide = true
  959. f.Locked = true
  960. f.BrickColor = BrickColor.new("White")
  961. local tor = b:FindFirstChild("Torso")
  962. if (tor==nil) then return end
  963. f.CFrame = (tor.CFrame*CFrame.new(4, 4, -4))
  964. f.Material = "Plastic"
  965. f.formFactor = "Brick"
  966. f.Shape = "Ball"
  967. f.Size = Vector3.new ( 1, 1, 1)
  968. bp = Instance.new("BodyPosition")
  969. bp.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  970. bp.Parent = f
  971. me=Instance.new("SpecialMesh")
  972. me.Parent = f
  973. me.MeshId = "http://www.roblox.com/asset/?id=82253558"
  974. me.TextureId = "http://www.roblox.com/asset/?id=82236982"
  975. spa=Instance.new("Sparkles")
  976. spa.Parent = f
  977. spa.Enabled = true
  978. spa.SparkleColor = Color3.new( 128, 0, 0)
  979. hum=Instance.new("Humanoid")
  980. hum.Parent = e
  981. hum.MaxHealth = 0
  982. end
  983. else
  984. t=b:findFirstChild(name)
  985. if t~=nil then
  986. u=t:findFirstChild("Head")
  987. if u~=nil then
  988. tor = b:findFirstChild("Torso")
  989. if tor~=nil then
  990. bodpos=u:findFirstChild("BodyPosition")
  991. bodpos.position = (tor.CFrame*CFrame.new(4, 4, -4)).p
  992. if not c:findFirstChild(owners.."'s Slave") then
  993. onEnter(a)
  994. end
  995. end
  996. end
  997. end
  998. end
  999. end
  1000. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement