Advertisement
RobloxScriptBuilder

ggguuuuh

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