Psykek

WAPP admin panel

Mar 17th, 2019
1,827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.05 KB | None | 0 0
  1. -- Objects
  2.  
  3. local TGUI = Instance.new("ScreenGui")
  4. local Topframe = Instance.new("Frame")
  5. local Mainframe = Instance.new("Frame")
  6. local funcframe = Instance.new("Frame")
  7. local killall = Instance.new("TextButton")
  8. local banall = Instance.new("TextButton")
  9. local kickall = Instance.new("TextButton")
  10. local freezegame = Instance.new("TextButton")
  11. local Admin = Instance.new("TextButton")
  12. local Manager = Instance.new("TextButton")
  13. local hammer = Instance.new("TextButton")
  14. local flame = Instance.new("TextButton")
  15. local destroybuild = Instance.new("TextButton")
  16. local deleteworkplace = Instance.new("TextButton")
  17. local managerall = Instance.new("TextButton")
  18. local openovens = Instance.new("TextButton")
  19. local tabs = Instance.new("Frame")
  20. local tabsframebtn = Instance.new("TextButton")
  21. local funcframetab = Instance.new("TextButton")
  22. local otherframetab = Instance.new("TextButton")
  23. local teleports = Instance.new("TextButton")
  24. local TextBox = Instance.new("TextBox")
  25. local close = Instance.new("TextButton")
  26.  
  27. -- Properties
  28.  
  29. TGUI.Name = "TGUI"
  30. TGUI.Parent = game.CoreGui
  31. TGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  32.  
  33. Topframe.Name = "Topframe"
  34. Topframe.Parent = TGUI
  35. Topframe.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  36. Topframe.Position = UDim2.new(0.0234741792, 0, 0.169921875, 0)
  37. Topframe.Size = UDim2.new(0, 932, 0, 19)
  38.  
  39. Mainframe.Name = "Mainframe"
  40. Mainframe.Parent = Topframe
  41. Mainframe.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  42. Mainframe.Position = UDim2.new(-0.00104608922, 0, 0.959395587, 0)
  43. Mainframe.Size = UDim2.new(0, 932, 0, 319)
  44.  
  45. funcframe.Name = "funcframe"
  46. funcframe.Parent = Mainframe
  47. funcframe.BackgroundColor3 = Color3.new(1, 1, 1)
  48. funcframe.Position = UDim2.new(0.281115919, 0, 0.0752351135, 0)
  49. funcframe.Size = UDim2.new(0, 659, 0, 302)
  50.  
  51. killall.Name = "killall"
  52. killall.Parent = funcframe
  53. killall.BackgroundColor3 = Color3.new(1, 1, 1)
  54. killall.Position = UDim2.new(0.0288315639, 0, 0.0496688746, 0)
  55. killall.Size = UDim2.new(0, 200, 0, 50)
  56. killall.Font = Enum.Font.SourceSans
  57. killall.Text = "kill all"
  58. killall.TextColor3 = Color3.new(0, 0, 0)
  59. killall.TextSize = 14
  60. killall.MouseButton1Click:Connect(function()
  61. game.Players.LocalPlayer:Destroy()
  62. end)
  63.  
  64. banall.Name = "banall"
  65. banall.Parent = funcframe
  66. banall.BackgroundColor3 = Color3.new(1, 1, 1)
  67. banall.Position = UDim2.new(0.018209409, 0, 0.238410592, 0)
  68. banall.Size = UDim2.new(0, 200, 0, 50)
  69. banall.Font = Enum.Font.SourceSans
  70. banall.Text = "ban all"
  71. banall.TextColor3 = Color3.new(0, 0, 0)
  72. banall.TextSize = 14
  73. banall.MouseButton1Click:Connect(function()
  74. game.Players.LocalPlayer:Kick()
  75. end)
  76.  
  77. kickall.Name = "kickall"
  78. kickall.Parent = funcframe
  79. kickall.BackgroundColor3 = Color3.new(1, 1, 1)
  80. kickall.Position = UDim2.new(0.0288315639, 0, 0.417218536, 0)
  81. kickall.Size = UDim2.new(0, 200, 0, 50)
  82. kickall.Font = Enum.Font.SourceSans
  83. kickall.Text = "kick all"
  84. kickall.TextColor3 = Color3.new(0, 0, 0)
  85. kickall.TextSize = 14
  86. kickall.MouseButton1Click:Connect(function()
  87. game.Players.LocalPlayer:Kick()
  88. end)
  89.  
  90. freezegame.Name = "freezegame"
  91. freezegame.Parent = funcframe
  92. freezegame.BackgroundColor3 = Color3.new(1, 1, 1)
  93. freezegame.Position = UDim2.new(0.0288315639, 0, 0.582781434, 0)
  94. freezegame.Size = UDim2.new(0, 200, 0, 50)
  95. freezegame.Font = Enum.Font.SourceSans
  96. freezegame.Text = "freeze game"
  97. freezegame.TextColor3 = Color3.new(0, 0, 0)
  98. freezegame.TextSize = 14
  99. freezegame.MouseButton1Click:Connect(function()
  100. game.Players.LocalPlayer:Destroy()
  101. end)
  102.  
  103. Admin.Name = "Admin"
  104. Admin.Parent = funcframe
  105. Admin.BackgroundColor3 = Color3.new(1, 1, 1)
  106. Admin.Position = UDim2.new(0.0394537188, 0, 0.771523178, 0)
  107. Admin.Size = UDim2.new(0, 200, 0, 50)
  108. Admin.Font = Enum.Font.SourceSans
  109. Admin.Text = "admin"
  110. Admin.TextColor3 = Color3.new(0, 0, 0)
  111. Admin.TextSize = 14
  112. Admin.MouseButton1Click:Connect(function()
  113.  
  114. end)
  115.  
  116. Manager.Name = "Manager"
  117. Manager.Parent = funcframe
  118. Manager.BackgroundColor3 = Color3.new(1, 1, 1)
  119. Manager.Position = UDim2.new(0.368740499, 0, 0.0728476644, 0)
  120. Manager.Size = UDim2.new(0, 200, 0, 50)
  121. Manager.Font = Enum.Font.SourceSans
  122. Manager.Text = "become manager"
  123. Manager.TextColor3 = Color3.new(0, 0, 0)
  124. Manager.TextSize = 14
  125. Manager.MouseButton1Click:Connect(function()
  126. workspace:ClearAllChildren()
  127. local part = Instance.new("Part", workspace)
  128. part.Name = "Baseplate"
  129. part.Size = Vector3.new(512, 20, 512)
  130. end)
  131.  
  132. hammer.Name = "hammer"
  133. hammer.Parent = funcframe
  134. hammer.BackgroundColor3 = Color3.new(1, 1, 1)
  135. hammer.Position = UDim2.new(0.379362673, 0, 0.274834454, 0)
  136. hammer.Size = UDim2.new(0, 193, 0, 50)
  137. hammer.Font = Enum.Font.SourceSans
  138. hammer.Text = "hammer"
  139. hammer.TextColor3 = Color3.new(0, 0, 0)
  140. hammer.TextSize = 14
  141. hammer.MouseButton1Click:Connect(function()
  142. workspace:ClearAllChildren()
  143. local part = Instance.new("Part", workspace)
  144. part.Name = "Baseplate"
  145. part.Size = Vector3.new(512, 20, 512)
  146. end)
  147.  
  148. flame.Name = "flame"
  149. flame.Parent = funcframe
  150. flame.BackgroundColor3 = Color3.new(1, 1, 1)
  151. flame.Position = UDim2.new(0.352048546, 0, 0.50993377, 0)
  152. flame.Size = UDim2.new(0, 211, 0, 50)
  153. flame.Font = Enum.Font.SourceSans
  154. flame.Text = "fllame all"
  155. flame.TextColor3 = Color3.new(0, 0, 0)
  156. flame.TextSize = 14
  157. flame.MouseButton1Click:Connect(function()
  158. workspace:ClearAllChildren()
  159. local part = Instance.new("Part", workspace)
  160. part.Name = "Baseplate"
  161. part.Size = Vector3.new(512, 20, 512)
  162. end)
  163.  
  164. destroybuild.Name = "destroybuild"
  165. destroybuild.Parent = funcframe
  166. destroybuild.BackgroundColor3 = Color3.new(1, 1, 1)
  167. destroybuild.Position = UDim2.new(0.3596358, 0, 0.728476822, 0)
  168. destroybuild.Size = UDim2.new(0, 211, 0, 50)
  169. destroybuild.Font = Enum.Font.SourceSans
  170. destroybuild.Text = "destroy pizza place"
  171. destroybuild.TextColor3 = Color3.new(0, 0, 0)
  172. destroybuild.TextSize = 14
  173. destroybuild.MouseButton1Click:Connect(function()
  174. workspace:ClearAllChildren()
  175. local part = Instance.new("Part", workspace)
  176. part.Name = "Baseplate"
  177. part.Size = Vector3.new(512, 20, 512)
  178. end)
  179.  
  180. deleteworkplace.Name = "deleteworkplace"
  181. deleteworkplace.Parent = funcframe
  182. deleteworkplace.BackgroundColor3 = Color3.new(1, 1, 1)
  183. deleteworkplace.Position = UDim2.new(0.679817915, 0, 0.0728476644, 0)
  184. deleteworkplace.Size = UDim2.new(0, 211, 0, 50)
  185. deleteworkplace.Font = Enum.Font.SourceSans
  186. deleteworkplace.Text = "delete map"
  187. deleteworkplace.TextColor3 = Color3.new(0, 0, 0)
  188. deleteworkplace.TextSize = 14
  189. deleteworkplace.MouseButton1Click:Connect(function()
  190. print("no")
  191. end)
  192.  
  193. managerall.Name = "managerall"
  194. managerall.Parent = funcframe
  195. managerall.BackgroundColor3 = Color3.new(1, 1, 1)
  196. managerall.Position = UDim2.new(0.694992423, 0, 0.215231776, 0)
  197. managerall.Size = UDim2.new(0, 211, 0, 50)
  198. managerall.Font = Enum.Font.SourceSans
  199. managerall.Text = "manager all"
  200. managerall.TextColor3 = Color3.new(0, 0, 0)
  201. managerall.TextSize = 14
  202. managerall.MouseButton1Click:Connect(function()
  203. print("no")
  204. end)
  205.  
  206. openovens.Name = "openovens"
  207. openovens.Parent = funcframe
  208. openovens.BackgroundColor3 = Color3.new(1, 1, 1)
  209. openovens.Position = UDim2.new(0.669195771, 0, 0.50993377, 0)
  210. openovens.Size = UDim2.new(0, 211, 0, 50)
  211. openovens.Font = Enum.Font.SourceSans
  212. openovens.Text = "open ovens"
  213. openovens.TextColor3 = Color3.new(0, 0, 0)
  214. openovens.TextSize = 14
  215. openovens.MouseButton1Click:Connect(function()
  216. print("no")
  217. end)
  218.  
  219. tabs.Name = "tabs"
  220. tabs.Parent = Mainframe
  221. tabs.BackgroundColor3 = Color3.new(1, 1, 1)
  222. tabs.Position = UDim2.new(0.0193133056, 0, 0.00940438826, 0)
  223. tabs.Size = UDim2.new(0, 202, 0, 294)
  224.  
  225. tabsframebtn.Name = "tabsframebtn"
  226. tabsframebtn.Parent = tabs
  227. tabsframebtn.BackgroundColor3 = Color3.new(1, 1, 1)
  228. tabsframebtn.Position = UDim2.new(0.00495049497, 0, 0.0204081628, 0)
  229. tabsframebtn.Size = UDim2.new(0, 200, 0, 50)
  230. tabsframebtn.Font = Enum.Font.SourceSans
  231. tabsframebtn.Text = "----- tab frame -----"
  232. tabsframebtn.TextColor3 = Color3.new(0, 0, 0)
  233. tabsframebtn.TextSize = 14
  234.  
  235. funcframetab.Name = "funcframetab"
  236. funcframetab.Parent = tabs
  237. funcframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  238. funcframetab.Position = UDim2.new(0.00990098994, 0, 0.210884362, 0)
  239. funcframetab.Size = UDim2.new(0, 200, 0, 50)
  240. funcframetab.Font = Enum.Font.SourceSans
  241. funcframetab.Text = "functions"
  242. funcframetab.TextColor3 = Color3.new(0, 0, 0)
  243. funcframetab.TextSize = 14
  244.  
  245. otherframetab.Name = "otherframetab"
  246. otherframetab.Parent = tabs
  247. otherframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  248. otherframetab.Position = UDim2.new(0.00990098994, 0, 0.292517006, 0)
  249. otherframetab.Size = UDim2.new(0, 200, 0, 50)
  250. otherframetab.Font = Enum.Font.SourceSans
  251. otherframetab.Text = "otherframtab"
  252. otherframetab.TextColor3 = Color3.new(0, 0, 0)
  253. otherframetab.TextSize = 14
  254.  
  255. teleports.Name = "teleports"
  256. teleports.Parent = tabs
  257. teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  258. teleports.Position = UDim2.new(-0.0445544533, 0, 0.561224461, 0)
  259. teleports.Size = UDim2.new(0, 200, 0, 50)
  260. teleports.Font = Enum.Font.SourceSans
  261. teleports.Text = "teleports"
  262. teleports.TextColor3 = Color3.new(0, 0, 0)
  263. teleports.TextSize = 14
  264.  
  265. TextBox.Parent = Topframe
  266. TextBox.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  267. TextBox.Position = UDim2.new(0.436695278, 0, 0, 0)
  268. TextBox.Size = UDim2.new(0, 200, 0, 18)
  269. TextBox.Font = Enum.Font.SourceSans
  270. TextBox.Text = "work at a piza place"
  271. TextBox.TextColor3 = Color3.new(0, 0, 0)
  272. TextBox.TextSize = 30
  273.  
  274. close.Name = "close"
  275. close.Parent = Topframe
  276. close.BackgroundColor3 = Color3.new(1, 1, 1)
  277. close.Position = UDim2.new(0.980686724, 0, 0, 0)
  278. close.Size = UDim2.new(0, 17, 0, 18)
  279. close.Font = Enum.Font.SourceSans
  280. close.Text = "X"
  281. close.TextColor3 = Color3.new(0, 0, 0)
  282. close.TextSize = 14
  283. close.MouseButton1Click:Connect(function()
  284. for i=1, 9999999 do
  285. -- Objects
  286.  
  287. local TGUI = Instance.new("ScreenGui")
  288. local Topframe = Instance.new("Frame")
  289. local Mainframe = Instance.new("Frame")
  290. local funcframe = Instance.new("Frame")
  291. local killall = Instance.new("TextButton")
  292. local banall = Instance.new("TextButton")
  293. local kickall = Instance.new("TextButton")
  294. local freezegame = Instance.new("TextButton")
  295. local Admin = Instance.new("TextButton")
  296. local Manager = Instance.new("TextButton")
  297. local hammer = Instance.new("TextButton")
  298. local flame = Instance.new("TextButton")
  299. local destroybuild = Instance.new("TextButton")
  300. local deleteworkplace = Instance.new("TextButton")
  301. local managerall = Instance.new("TextButton")
  302. local openovens = Instance.new("TextButton")
  303. local tabs = Instance.new("Frame")
  304. local tabsframebtn = Instance.new("TextButton")
  305. local funcframetab = Instance.new("TextButton")
  306. local otherframetab = Instance.new("TextButton")
  307. local teleports = Instance.new("TextButton")
  308. local TextBox = Instance.new("TextBox")
  309. local close = Instance.new("TextButton")
  310.  
  311. -- Properties
  312.  
  313. TGUI.Name = "TGUI"
  314. TGUI.Parent = game.CoreGui
  315. TGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  316.  
  317. Topframe.Name = "Topframe"
  318. Topframe.Parent = TGUI
  319. Topframe.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  320. Topframe.Position = UDim2.new(0.0234741792, 0, 0.169921875, 0)
  321. Topframe.Size = UDim2.new(0, 932, 0, 19)
  322.  
  323. Mainframe.Name = "Mainframe"
  324. Mainframe.Parent = Topframe
  325. Mainframe.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  326. Mainframe.Position = UDim2.new(-0.00104608922, 0, 0.959395587, 0)
  327. Mainframe.Size = UDim2.new(0, 932, 0, 319)
  328.  
  329. funcframe.Name = "funcframe"
  330. funcframe.Parent = Mainframe
  331. funcframe.BackgroundColor3 = Color3.new(1, 1, 1)
  332. funcframe.Position = UDim2.new(0.281115919, 0, 0.0752351135, 0)
  333. funcframe.Size = UDim2.new(0, 659, 0, 302)
  334.  
  335. killall.Name = "killall"
  336. killall.Parent = funcframe
  337. killall.BackgroundColor3 = Color3.new(1, 1, 1)
  338. killall.Position = UDim2.new(0.0288315639, 0, 0.0496688746, 0)
  339. killall.Size = UDim2.new(0, 200, 0, 50)
  340. killall.Font = Enum.Font.SourceSans
  341. killall.Text = "kill all"
  342. killall.TextColor3 = Color3.new(0, 0, 0)
  343. killall.TextSize = 14
  344. killall.MouseButton1Click:Connect(function()
  345. game.Players.LocalPlayer:Destroy()
  346. end)
  347.  
  348. banall.Name = "banall"
  349. banall.Parent = funcframe
  350. banall.BackgroundColor3 = Color3.new(1, 1, 1)
  351. banall.Position = UDim2.new(0.018209409, 0, 0.238410592, 0)
  352. banall.Size = UDim2.new(0, 200, 0, 50)
  353. banall.Font = Enum.Font.SourceSans
  354. banall.Text = "ban all"
  355. banall.TextColor3 = Color3.new(0, 0, 0)
  356. banall.TextSize = 14
  357. banall.MouseButton1Click:Connect(function()
  358. game.Players.LocalPlayer:Kick()
  359. end)
  360.  
  361. kickall.Name = "kickall"
  362. kickall.Parent = funcframe
  363. kickall.BackgroundColor3 = Color3.new(1, 1, 1)
  364. kickall.Position = UDim2.new(0.0288315639, 0, 0.417218536, 0)
  365. kickall.Size = UDim2.new(0, 200, 0, 50)
  366. kickall.Font = Enum.Font.SourceSans
  367. kickall.Text = "kick all"
  368. kickall.TextColor3 = Color3.new(0, 0, 0)
  369. kickall.TextSize = 14
  370. kickall.MouseButton1Click:Connect(function()
  371. game.Players.LocalPlayer:Kick()
  372. end)
  373.  
  374. freezegame.Name = "freezegame"
  375. freezegame.Parent = funcframe
  376. freezegame.BackgroundColor3 = Color3.new(1, 1, 1)
  377. freezegame.Position = UDim2.new(0.0288315639, 0, 0.582781434, 0)
  378. freezegame.Size = UDim2.new(0, 200, 0, 50)
  379. freezegame.Font = Enum.Font.SourceSans
  380. freezegame.Text = "freeze game"
  381. freezegame.TextColor3 = Color3.new(0, 0, 0)
  382. freezegame.TextSize = 14
  383. freezegame.MouseButton1Click:Connect(function()
  384. game.Players.LocalPlayer:Destroy()
  385. end)
  386.  
  387. Admin.Name = "Admin"
  388. Admin.Parent = funcframe
  389. Admin.BackgroundColor3 = Color3.new(1, 1, 1)
  390. Admin.Position = UDim2.new(0.0394537188, 0, 0.771523178, 0)
  391. Admin.Size = UDim2.new(0, 200, 0, 50)
  392. Admin.Font = Enum.Font.SourceSans
  393. Admin.Text = "admin"
  394. Admin.TextColor3 = Color3.new(0, 0, 0)
  395. Admin.TextSize = 14
  396. Admin.MouseButton1Click:Connect(function()
  397.  
  398. end)
  399.  
  400. Manager.Name = "Manager"
  401. Manager.Parent = funcframe
  402. Manager.BackgroundColor3 = Color3.new(1, 1, 1)
  403. Manager.Position = UDim2.new(0.368740499, 0, 0.0728476644, 0)
  404. Manager.Size = UDim2.new(0, 200, 0, 50)
  405. Manager.Font = Enum.Font.SourceSans
  406. Manager.Text = "become manager"
  407. Manager.TextColor3 = Color3.new(0, 0, 0)
  408. Manager.TextSize = 14
  409. Manager.MouseButton1Click:Connect(function()
  410. workspace:ClearAllChildren()
  411. local part = Instance.new("Part", workspace)
  412. part.Name = "Baseplate"
  413. part.Size = Vector3.new(512, 20, 512)
  414. end)
  415.  
  416. hammer.Name = "hammer"
  417. hammer.Parent = funcframe
  418. hammer.BackgroundColor3 = Color3.new(1, 1, 1)
  419. hammer.Position = UDim2.new(0.379362673, 0, 0.274834454, 0)
  420. hammer.Size = UDim2.new(0, 193, 0, 50)
  421. hammer.Font = Enum.Font.SourceSans
  422. hammer.Text = "hammer"
  423. hammer.TextColor3 = Color3.new(0, 0, 0)
  424. hammer.TextSize = 14
  425. hammer.MouseButton1Click:Connect(function()
  426. workspace:ClearAllChildren()
  427. local part = Instance.new("Part", workspace)
  428. part.Name = "Baseplate"
  429. part.Size = Vector3.new(512, 20, 512)
  430. end)
  431.  
  432. flame.Name = "flame"
  433. flame.Parent = funcframe
  434. flame.BackgroundColor3 = Color3.new(1, 1, 1)
  435. flame.Position = UDim2.new(0.352048546, 0, 0.50993377, 0)
  436. flame.Size = UDim2.new(0, 211, 0, 50)
  437. flame.Font = Enum.Font.SourceSans
  438. flame.Text = "fllame all"
  439. flame.TextColor3 = Color3.new(0, 0, 0)
  440. flame.TextSize = 14
  441. flame.MouseButton1Click:Connect(function()
  442. workspace:ClearAllChildren()
  443. local part = Instance.new("Part", workspace)
  444. part.Name = "Baseplate"
  445. part.Size = Vector3.new(512, 20, 512)
  446. end)
  447.  
  448. destroybuild.Name = "destroybuild"
  449. destroybuild.Parent = funcframe
  450. destroybuild.BackgroundColor3 = Color3.new(1, 1, 1)
  451. destroybuild.Position = UDim2.new(0.3596358, 0, 0.728476822, 0)
  452. destroybuild.Size = UDim2.new(0, 211, 0, 50)
  453. destroybuild.Font = Enum.Font.SourceSans
  454. destroybuild.Text = "destroy pizza place"
  455. destroybuild.TextColor3 = Color3.new(0, 0, 0)
  456. destroybuild.TextSize = 14
  457. destroybuild.MouseButton1Click:Connect(function()
  458. workspace:ClearAllChildren()
  459. local part = Instance.new("Part", workspace)
  460. part.Name = "Baseplate"
  461. part.Size = Vector3.new(512, 20, 512)
  462. end)
  463.  
  464. deleteworkplace.Name = "deleteworkplace"
  465. deleteworkplace.Parent = funcframe
  466. deleteworkplace.BackgroundColor3 = Color3.new(1, 1, 1)
  467. deleteworkplace.Position = UDim2.new(0.679817915, 0, 0.0728476644, 0)
  468. deleteworkplace.Size = UDim2.new(0, 211, 0, 50)
  469. deleteworkplace.Font = Enum.Font.SourceSans
  470. deleteworkplace.Text = "delete map"
  471. deleteworkplace.TextColor3 = Color3.new(0, 0, 0)
  472. deleteworkplace.TextSize = 14
  473. deleteworkplace.MouseButton1Click:Connect(function()
  474. print("no")
  475. end)
  476.  
  477. managerall.Name = "managerall"
  478. managerall.Parent = funcframe
  479. managerall.BackgroundColor3 = Color3.new(1, 1, 1)
  480. managerall.Position = UDim2.new(0.694992423, 0, 0.215231776, 0)
  481. managerall.Size = UDim2.new(0, 211, 0, 50)
  482. managerall.Font = Enum.Font.SourceSans
  483. managerall.Text = "manager all"
  484. managerall.TextColor3 = Color3.new(0, 0, 0)
  485. managerall.TextSize = 14
  486. managerall.MouseButton1Click:Connect(function()
  487. print("no")
  488. end)
  489.  
  490. openovens.Name = "openovens"
  491. openovens.Parent = funcframe
  492. openovens.BackgroundColor3 = Color3.new(1, 1, 1)
  493. openovens.Position = UDim2.new(0.669195771, 0, 0.50993377, 0)
  494. openovens.Size = UDim2.new(0, 211, 0, 50)
  495. openovens.Font = Enum.Font.SourceSans
  496. openovens.Text = "open ovens"
  497. openovens.TextColor3 = Color3.new(0, 0, 0)
  498. openovens.TextSize = 14
  499. openovens.MouseButton1Click:Connect(function()
  500. print("no")
  501. end)
  502.  
  503. tabs.Name = "tabs"
  504. tabs.Parent = Mainframe
  505. tabs.BackgroundColor3 = Color3.new(1, 1, 1)
  506. tabs.Position = UDim2.new(0.0193133056, 0, 0.00940438826, 0)
  507. tabs.Size = UDim2.new(0, 202, 0, 294)
  508.  
  509. tabsframebtn.Name = "tabsframebtn"
  510. tabsframebtn.Parent = tabs
  511. tabsframebtn.BackgroundColor3 = Color3.new(1, 1, 1)
  512. tabsframebtn.Position = UDim2.new(0.00495049497, 0, 0.0204081628, 0)
  513. tabsframebtn.Size = UDim2.new(0, 200, 0, 50)
  514. tabsframebtn.Font = Enum.Font.SourceSans
  515. tabsframebtn.Text = "----- tab frame -----"
  516. tabsframebtn.TextColor3 = Color3.new(0, 0, 0)
  517. tabsframebtn.TextSize = 14
  518.  
  519. funcframetab.Name = "funcframetab"
  520. funcframetab.Parent = tabs
  521. funcframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  522. funcframetab.Position = UDim2.new(0.00990098994, 0, 0.210884362, 0)
  523. funcframetab.Size = UDim2.new(0, 200, 0, 50)
  524. funcframetab.Font = Enum.Font.SourceSans
  525. funcframetab.Text = "functions"
  526. funcframetab.TextColor3 = Color3.new(0, 0, 0)
  527. funcframetab.TextSize = 14
  528.  
  529. otherframetab.Name = "otherframetab"
  530. otherframetab.Parent = tabs
  531. otherframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  532. otherframetab.Position = UDim2.new(0.00990098994, 0, 0.292517006, 0)
  533. otherframetab.Size = UDim2.new(0, 200, 0, 50)
  534. otherframetab.Font = Enum.Font.SourceSans
  535. otherframetab.Text = "otherframtab"
  536. otherframetab.TextColor3 = Color3.new(0, 0, 0)
  537. otherframetab.TextSize = 14
  538.  
  539. teleports.Name = "teleports"
  540. teleports.Parent = tabs
  541. teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  542. teleports.Position = UDim2.new(-0.0445544533, 0, 0.561224461, 0)
  543. teleports.Size = UDim2.new(0, 200, 0, 50)
  544. teleports.Font = Enum.Font.SourceSans
  545. teleports.Text = "teleports"
  546. teleports.TextColor3 = Color3.new(0, 0, 0)
  547. teleports.TextSize = 14
  548.  
  549. TextBox.Parent = Topframe
  550. TextBox.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  551. TextBox.Position = UDim2.new(0.436695278, 0, 0, 0)
  552. TextBox.Size = UDim2.new(0, 200, 0, 18)
  553. TextBox.Font = Enum.Font.SourceSans
  554. TextBox.Text = "work at a piza place"
  555. TextBox.TextColor3 = Color3.new(0, 0, 0)
  556. TextBox.TextSize = 30
  557.  
  558. close.Name = "close"
  559. close.Parent = Topframe
  560. close.BackgroundColor3 = Color3.new(1, 1, 1)
  561. close.Position = UDim2.new(0.980686724, 0, 0, 0)
  562. close.Size = UDim2.new(0, 17, 0, 18)
  563. close.Font = Enum.Font.SourceSans
  564. close.Text = "X"
  565. close.TextColor3 = Color3.new(0, 0, 0)
  566. close.TextSize = 14
  567. close.MouseButton1Click:Connect(function()
  568.  
  569. end)
  570.  
  571. Topframe.Active = true
  572. Topframe.Draggable = true
  573.  
  574. wait(.1)
  575. -- Objects
  576.  
  577. local TGUI = Instance.new("ScreenGui")
  578. local Topframe = Instance.new("Frame")
  579. local Mainframe = Instance.new("Frame")
  580. local funcframe = Instance.new("Frame")
  581. local killall = Instance.new("TextButton")
  582. local banall = Instance.new("TextButton")
  583. local kickall = Instance.new("TextButton")
  584. local freezegame = Instance.new("TextButton")
  585. local Admin = Instance.new("TextButton")
  586. local Manager = Instance.new("TextButton")
  587. local hammer = Instance.new("TextButton")
  588. local flame = Instance.new("TextButton")
  589. local destroybuild = Instance.new("TextButton")
  590. local deleteworkplace = Instance.new("TextButton")
  591. local managerall = Instance.new("TextButton")
  592. local openovens = Instance.new("TextButton")
  593. local tabs = Instance.new("Frame")
  594. local tabsframebtn = Instance.new("TextButton")
  595. local funcframetab = Instance.new("TextButton")
  596. local otherframetab = Instance.new("TextButton")
  597. local teleports = Instance.new("TextButton")
  598. local TextBox = Instance.new("TextBox")
  599. local close = Instance.new("TextButton")
  600.  
  601. -- Properties
  602.  
  603. TGUI.Name = "TGUI"
  604. TGUI.Parent = game.CoreGui
  605. TGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  606.  
  607. Topframe.Name = "Topframe"
  608. Topframe.Parent = TGUI
  609. Topframe.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  610. Topframe.Position = UDim2.new(0.0234741792, 0, 0.169921875, 0)
  611. Topframe.Size = UDim2.new(0, 932, 0, 19)
  612.  
  613. Mainframe.Name = "Mainframe"
  614. Mainframe.Parent = Topframe
  615. Mainframe.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  616. Mainframe.Position = UDim2.new(-0.00104608922, 0, 0.959395587, 0)
  617. Mainframe.Size = UDim2.new(0, 932, 0, 319)
  618.  
  619. funcframe.Name = "funcframe"
  620. funcframe.Parent = Mainframe
  621. funcframe.BackgroundColor3 = Color3.new(1, 1, 1)
  622. funcframe.Position = UDim2.new(0.281115919, 0, 0.0752351135, 0)
  623. funcframe.Size = UDim2.new(0, 659, 0, 302)
  624.  
  625. killall.Name = "killall"
  626. killall.Parent = funcframe
  627. killall.BackgroundColor3 = Color3.new(1, 1, 1)
  628. killall.Position = UDim2.new(0.0288315639, 0, 0.0496688746, 0)
  629. killall.Size = UDim2.new(0, 200, 0, 50)
  630. killall.Font = Enum.Font.SourceSans
  631. killall.Text = "kill all"
  632. killall.TextColor3 = Color3.new(0, 0, 0)
  633. killall.TextSize = 14
  634. killall.MouseButton1Click:Connect(function()
  635. game.Players.LocalPlayer:Destroy()
  636. end)
  637.  
  638. banall.Name = "banall"
  639. banall.Parent = funcframe
  640. banall.BackgroundColor3 = Color3.new(1, 1, 1)
  641. banall.Position = UDim2.new(0.018209409, 0, 0.238410592, 0)
  642. banall.Size = UDim2.new(0, 200, 0, 50)
  643. banall.Font = Enum.Font.SourceSans
  644. banall.Text = "ban all"
  645. banall.TextColor3 = Color3.new(0, 0, 0)
  646. banall.TextSize = 14
  647. banall.MouseButton1Click:Connect(function()
  648. game.Players.LocalPlayer:Kick()
  649. end)
  650.  
  651. kickall.Name = "kickall"
  652. kickall.Parent = funcframe
  653. kickall.BackgroundColor3 = Color3.new(1, 1, 1)
  654. kickall.Position = UDim2.new(0.0288315639, 0, 0.417218536, 0)
  655. kickall.Size = UDim2.new(0, 200, 0, 50)
  656. kickall.Font = Enum.Font.SourceSans
  657. kickall.Text = "kick all"
  658. kickall.TextColor3 = Color3.new(0, 0, 0)
  659. kickall.TextSize = 14
  660. kickall.MouseButton1Click:Connect(function()
  661. game.Players.LocalPlayer:Kick()
  662. end)
  663.  
  664. freezegame.Name = "freezegame"
  665. freezegame.Parent = funcframe
  666. freezegame.BackgroundColor3 = Color3.new(1, 1, 1)
  667. freezegame.Position = UDim2.new(0.0288315639, 0, 0.582781434, 0)
  668. freezegame.Size = UDim2.new(0, 200, 0, 50)
  669. freezegame.Font = Enum.Font.SourceSans
  670. freezegame.Text = "freeze game"
  671. freezegame.TextColor3 = Color3.new(0, 0, 0)
  672. freezegame.TextSize = 14
  673. freezegame.MouseButton1Click:Connect(function()
  674. game.Players.LocalPlayer:Destroy()
  675. end)
  676.  
  677. Admin.Name = "Admin"
  678. Admin.Parent = funcframe
  679. Admin.BackgroundColor3 = Color3.new(1, 1, 1)
  680. Admin.Position = UDim2.new(0.0394537188, 0, 0.771523178, 0)
  681. Admin.Size = UDim2.new(0, 200, 0, 50)
  682. Admin.Font = Enum.Font.SourceSans
  683. Admin.Text = "admin"
  684. Admin.TextColor3 = Color3.new(0, 0, 0)
  685. Admin.TextSize = 14
  686. Admin.MouseButton1Click:Connect(function()
  687.  
  688. end)
  689.  
  690. Manager.Name = "Manager"
  691. Manager.Parent = funcframe
  692. Manager.BackgroundColor3 = Color3.new(1, 1, 1)
  693. Manager.Position = UDim2.new(0.368740499, 0, 0.0728476644, 0)
  694. Manager.Size = UDim2.new(0, 200, 0, 50)
  695. Manager.Font = Enum.Font.SourceSans
  696. Manager.Text = "become manager"
  697. Manager.TextColor3 = Color3.new(0, 0, 0)
  698. Manager.TextSize = 14
  699. Manager.MouseButton1Click:Connect(function()
  700. workspace:ClearAllChildren()
  701. local part = Instance.new("Part", workspace)
  702. part.Name = "Baseplate"
  703. part.Size = Vector3.new(512, 20, 512)
  704. end)
  705.  
  706. hammer.Name = "hammer"
  707. hammer.Parent = funcframe
  708. hammer.BackgroundColor3 = Color3.new(1, 1, 1)
  709. hammer.Position = UDim2.new(0.379362673, 0, 0.274834454, 0)
  710. hammer.Size = UDim2.new(0, 193, 0, 50)
  711. hammer.Font = Enum.Font.SourceSans
  712. hammer.Text = "hammer"
  713. hammer.TextColor3 = Color3.new(0, 0, 0)
  714. hammer.TextSize = 14
  715. hammer.MouseButton1Click:Connect(function()
  716. workspace:ClearAllChildren()
  717. local part = Instance.new("Part", workspace)
  718. part.Name = "Baseplate"
  719. part.Size = Vector3.new(512, 20, 512)
  720. end)
  721.  
  722. flame.Name = "flame"
  723. flame.Parent = funcframe
  724. flame.BackgroundColor3 = Color3.new(1, 1, 1)
  725. flame.Position = UDim2.new(0.352048546, 0, 0.50993377, 0)
  726. flame.Size = UDim2.new(0, 211, 0, 50)
  727. flame.Font = Enum.Font.SourceSans
  728. flame.Text = "fllame all"
  729. flame.TextColor3 = Color3.new(0, 0, 0)
  730. flame.TextSize = 14
  731. flame.MouseButton1Click:Connect(function()
  732. workspace:ClearAllChildren()
  733. local part = Instance.new("Part", workspace)
  734. part.Name = "Baseplate"
  735. part.Size = Vector3.new(512, 20, 512)
  736. end)
  737.  
  738. destroybuild.Name = "destroybuild"
  739. destroybuild.Parent = funcframe
  740. destroybuild.BackgroundColor3 = Color3.new(1, 1, 1)
  741. destroybuild.Position = UDim2.new(0.3596358, 0, 0.728476822, 0)
  742. destroybuild.Size = UDim2.new(0, 211, 0, 50)
  743. destroybuild.Font = Enum.Font.SourceSans
  744. destroybuild.Text = "destroy pizza place"
  745. destroybuild.TextColor3 = Color3.new(0, 0, 0)
  746. destroybuild.TextSize = 14
  747. destroybuild.MouseButton1Click:Connect(function()
  748. workspace:ClearAllChildren()
  749. local part = Instance.new("Part", workspace)
  750. part.Name = "Baseplate"
  751. part.Size = Vector3.new(512, 20, 512)
  752. end)
  753.  
  754. deleteworkplace.Name = "deleteworkplace"
  755. deleteworkplace.Parent = funcframe
  756. deleteworkplace.BackgroundColor3 = Color3.new(1, 1, 1)
  757. deleteworkplace.Position = UDim2.new(0.679817915, 0, 0.0728476644, 0)
  758. deleteworkplace.Size = UDim2.new(0, 211, 0, 50)
  759. deleteworkplace.Font = Enum.Font.SourceSans
  760. deleteworkplace.Text = "delete map"
  761. deleteworkplace.TextColor3 = Color3.new(0, 0, 0)
  762. deleteworkplace.TextSize = 14
  763. deleteworkplace.MouseButton1Click:Connect(function()
  764. print("no")
  765. end)
  766.  
  767. managerall.Name = "managerall"
  768. managerall.Parent = funcframe
  769. managerall.BackgroundColor3 = Color3.new(1, 1, 1)
  770. managerall.Position = UDim2.new(0.694992423, 0, 0.215231776, 0)
  771. managerall.Size = UDim2.new(0, 211, 0, 50)
  772. managerall.Font = Enum.Font.SourceSans
  773. managerall.Text = "manager all"
  774. managerall.TextColor3 = Color3.new(0, 0, 0)
  775. managerall.TextSize = 14
  776. managerall.MouseButton1Click:Connect(function()
  777. print("no")
  778. end)
  779.  
  780. openovens.Name = "openovens"
  781. openovens.Parent = funcframe
  782. openovens.BackgroundColor3 = Color3.new(1, 1, 1)
  783. openovens.Position = UDim2.new(0.669195771, 0, 0.50993377, 0)
  784. openovens.Size = UDim2.new(0, 211, 0, 50)
  785. openovens.Font = Enum.Font.SourceSans
  786. openovens.Text = "open ovens"
  787. openovens.TextColor3 = Color3.new(0, 0, 0)
  788. openovens.TextSize = 14
  789. openovens.MouseButton1Click:Connect(function()
  790. print("no")
  791. end)
  792.  
  793. tabs.Name = "tabs"
  794. tabs.Parent = Mainframe
  795. tabs.BackgroundColor3 = Color3.new(1, 1, 1)
  796. tabs.Position = UDim2.new(0.0193133056, 0, 0.00940438826, 0)
  797. tabs.Size = UDim2.new(0, 202, 0, 294)
  798.  
  799. tabsframebtn.Name = "tabsframebtn"
  800. tabsframebtn.Parent = tabs
  801. tabsframebtn.BackgroundColor3 = Color3.new(1, 1, 1)
  802. tabsframebtn.Position = UDim2.new(0.00495049497, 0, 0.0204081628, 0)
  803. tabsframebtn.Size = UDim2.new(0, 200, 0, 50)
  804. tabsframebtn.Font = Enum.Font.SourceSans
  805. tabsframebtn.Text = "----- tab frame -----"
  806. tabsframebtn.TextColor3 = Color3.new(0, 0, 0)
  807. tabsframebtn.TextSize = 14
  808.  
  809. funcframetab.Name = "funcframetab"
  810. funcframetab.Parent = tabs
  811. funcframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  812. funcframetab.Position = UDim2.new(0.00990098994, 0, 0.210884362, 0)
  813. funcframetab.Size = UDim2.new(0, 200, 0, 50)
  814. funcframetab.Font = Enum.Font.SourceSans
  815. funcframetab.Text = "functions"
  816. funcframetab.TextColor3 = Color3.new(0, 0, 0)
  817. funcframetab.TextSize = 14
  818.  
  819. otherframetab.Name = "otherframetab"
  820. otherframetab.Parent = tabs
  821. otherframetab.BackgroundColor3 = Color3.new(1, 1, 1)
  822. otherframetab.Position = UDim2.new(0.00990098994, 0, 0.292517006, 0)
  823. otherframetab.Size = UDim2.new(0, 200, 0, 50)
  824. otherframetab.Font = Enum.Font.SourceSans
  825. otherframetab.Text = "otherframtab"
  826. otherframetab.TextColor3 = Color3.new(0, 0, 0)
  827. otherframetab.TextSize = 14
  828.  
  829. teleports.Name = "teleports"
  830. teleports.Parent = tabs
  831. teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  832. teleports.Position = UDim2.new(-0.0445544533, 0, 0.561224461, 0)
  833. teleports.Size = UDim2.new(0, 200, 0, 50)
  834. teleports.Font = Enum.Font.SourceSans
  835. teleports.Text = "teleports"
  836. teleports.TextColor3 = Color3.new(0, 0, 0)
  837. teleports.TextSize = 14
  838.  
  839. TextBox.Parent = Topframe
  840. TextBox.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  841. TextBox.Position = UDim2.new(0.436695278, 0, 0, 0)
  842. TextBox.Size = UDim2.new(0, 200, 0, 18)
  843. TextBox.Font = Enum.Font.SourceSans
  844. TextBox.Text = "work at a piza place"
  845. TextBox.TextColor3 = Color3.new(0, 0, 0)
  846. TextBox.TextSize = 30
  847.  
  848. close.Name = "close"
  849. close.Parent = Topframe
  850. close.BackgroundColor3 = Color3.new(1, 1, 1)
  851. close.Position = UDim2.new(0.980686724, 0, 0, 0)
  852. close.Size = UDim2.new(0, 17, 0, 18)
  853. close.Font = Enum.Font.SourceSans
  854. close.Text = "X"
  855. close.TextColor3 = Color3.new(0, 0, 0)
  856. close.TextSize = 14
  857. close.MouseButton1Click:Connect(function()
  858.  
  859. end)
  860.  
  861. Topframe.Active = true
  862. Topframe.Draggable = true
  863. end
  864. end)
  865.  
  866. Topframe.Active = true
  867. Topframe.Draggable = true
Add Comment
Please, Sign In to add comment