Advertisement
AndrewTheMaster

Slave Script

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