Psykek

Supreme FE

Apr 1st, 2019
29,935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.67 KB | None | 0 0
  1. --[[
  2. SUPREME v1.0
  3. _________________________________________
  4. Current Commands:
  5.  
  6. Kill [Player] - Kills [Player]
  7. Bakiez Bakery (SEMI WORKING)
  8. Panda Express (WORKING)
  9. Jailbreak (WORKING)
  10. Prison Life (WORKING)
  11. Bloxxed Hotels (WIP)
  12. Auto Rap Battles (WORKING)
  13. KillAll - Kills All Players
  14. Bakiez Bakery (WORKING)
  15. Panda Express (WORKING)
  16. Jailbreak (WORKING)
  17. Prison Life (WORKING)
  18. Bloxxed Hotels (WIP)
  19. Auto Rap Battles (WORKING)
  20. Goto [Player] - Teleports to [Player]
  21. All Games
  22. Tools - Steals all tools in workspace
  23. All Games
  24. Annoy [Player] - Annoys [Player]
  25. All Games
  26. Rape [Player] - Rapes [Player]
  27. All Games
  28.  
  29. --]]
  30. -- Variables:
  31. local SUPREME = Instance.new("ScreenGui")
  32. local Top = Instance.new("Frame")
  33. local Under = Instance.new("Frame")
  34. local Purple = Instance.new("TextButton")
  35. local Blue = Instance.new("TextButton")
  36. local Default = Instance.new("TextButton")
  37. local VictimName = Instance.new("TextBox")
  38. local Slider = Instance.new("Frame")
  39. local Kill = Instance.new("TextButton")
  40. local KillAll = Instance.new("TextButton")
  41. local Goto = Instance.new("TextButton")
  42. local Tools = Instance.new("TextButton")
  43. local Annoy = Instance.new("TextButton")
  44. local Rape = Instance.new("TextButton")
  45. local TextLabel = Instance.new("TextLabel")
  46. local TextLabel_2 = Instance.new("TextLabel")
  47. local Player = game:GetService("Players").LocalPlayer
  48. --Functions:
  49.  
  50. local function sendNotification(title,text)
  51. game:GetService("StarterGui"):SetCore("SendNotification", {
  52. Title = tostring(title);
  53. Text = tostring(text);
  54. Duration = 7;
  55. });
  56. end
  57.  
  58. --Properties:
  59.  
  60. SUPREME.Name = "SUPREME"
  61. SUPREME.Parent = Player:WaitForChild("PlayerGui")
  62.  
  63. Top.Name = "Top"
  64. Top.Parent = SUPREME
  65. Top.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  66. Top.BackgroundTransparency = 0.30000001192093
  67. Top.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  68. Top.Position = UDim2.new(0.209424078, 0, 0.250377089, 0)
  69. Top.Size = UDim2.new(0, 260, 0, 53)
  70. Top.Draggable = true
  71. Top.Active = true
  72. Top.Selectable = true
  73.  
  74. Under.Name = "Under"
  75. Under.Parent = Top
  76. Under.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  77. Under.BackgroundTransparency = 0.050000000745058
  78. Under.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  79. Under.Position = UDim2.new(-0.00384615385, 0, 1, 0)
  80. Under.Size = UDim2.new(0, 261, 0, 191)
  81.  
  82. Purple.Name = "Purple"
  83. Purple.Parent = Under
  84. Purple.BackgroundColor3 = Color3.new(0.419608, 0.00392157, 0.658824)
  85. Purple.BorderColor3 = Color3.new(0.419608, 0.00392157, 0.658824)
  86. Purple.Position = UDim2.new(-1.16415322e-09, 0, 0.916230381, 0)
  87. Purple.Size = UDim2.new(0, 20, 0, 16)
  88. Purple.Font = Enum.Font.SourceSans
  89. Purple.Text = ""
  90. Purple.TextColor3 = Color3.new(0, 0, 0)
  91. Purple.TextSize = 14
  92.  
  93. Blue.Name = "Blue"
  94. Blue.Parent = Under
  95. Blue.BackgroundColor3 = Color3.new(0, 0.65098, 1)
  96. Blue.BorderColor3 = Color3.new(0, 0.65098, 1)
  97. Blue.Position = UDim2.new(0.0766283497, 0, 0.916230381, 0)
  98. Blue.Size = UDim2.new(0, 20, 0, 16)
  99. Blue.Font = Enum.Font.SourceSans
  100. Blue.Text = ""
  101. Blue.TextColor3 = Color3.new(0, 0, 0)
  102. Blue.TextSize = 14
  103.  
  104. Default.Name = "Default"
  105. Default.Parent = Under
  106. Default.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  107. Default.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  108. Default.Position = UDim2.new(0.153256714, 0, 0.916230381, 0)
  109. Default.Size = UDim2.new(0, 20, 0, 16)
  110. Default.Font = Enum.Font.SourceSans
  111. Default.Text = ""
  112. Default.TextColor3 = Color3.new(0, 0, 0)
  113. Default.TextSize = 14
  114.  
  115. VictimName.Name = "VictimName"
  116. VictimName.Parent = Under
  117. VictimName.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  118. VictimName.BackgroundTransparency = 0.40000000596046
  119. VictimName.BorderColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  120. VictimName.Position = UDim2.new(0.130268201, 0, 0.0994764417, 0)
  121. VictimName.Size = UDim2.new(0, 192, 0, 33)
  122. VictimName.Font = Enum.Font.SourceSansItalic
  123. VictimName.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  124. VictimName.Text = "Victim"
  125. VictimName.TextColor3 = Color3.new(1, 1, 1)
  126. VictimName.TextSize = 28
  127.  
  128. Slider.Name = "Slider"
  129. Slider.Parent = VictimName
  130. Slider.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  131. Slider.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  132. Slider.Size = UDim2.new(0, 192, 0, 33)
  133.  
  134. Kill.Name = "Kill"
  135. Kill.Parent = Under
  136. Kill.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  137. Kill.BackgroundTransparency = 0.30000001192093
  138. Kill.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  139. Kill.Position = UDim2.new(0.521072805, 0, 0.329842925, 0)
  140. Kill.Size = UDim2.new(0, 90, 0, 26)
  141. Kill.Font = Enum.Font.SourceSansItalic
  142. Kill.Text = "Kill"
  143. Kill.TextColor3 = Color3.new(1, 1, 1)
  144. Kill.TextSize = 23
  145.  
  146. KillAll.Name = "KillAll"
  147. KillAll.Parent = Under
  148. KillAll.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  149. KillAll.BackgroundTransparency = 0.30000001192093
  150. KillAll.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  151. KillAll.Position = UDim2.new(0.130268216, 0, 0.329842925, 0)
  152. KillAll.Size = UDim2.new(0, 90, 0, 26)
  153. KillAll.Font = Enum.Font.SourceSansItalic
  154. KillAll.Text = "Kill All"
  155. KillAll.TextColor3 = Color3.new(1, 1, 1)
  156. KillAll.TextSize = 23
  157.  
  158. Goto.Name = "Goto"
  159. Goto.Parent = Under
  160. Goto.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  161. Goto.BackgroundTransparency = 0.30000001192093
  162. Goto.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  163. Goto.Position = UDim2.new(0.521072805, 0, 0.518324614, 0)
  164. Goto.Size = UDim2.new(0, 90, 0, 26)
  165. Goto.Font = Enum.Font.SourceSansItalic
  166. Goto.Text = "Goto"
  167. Goto.TextColor3 = Color3.new(1, 1, 1)
  168. Goto.TextSize = 23
  169.  
  170. Tools.Name = "Tools"
  171. Tools.Parent = Under
  172. Tools.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  173. Tools.BackgroundTransparency = 0.30000001192093
  174. Tools.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  175. Tools.Position = UDim2.new(0.130268216, 0, 0.518324614, 0)
  176. Tools.Size = UDim2.new(0, 90, 0, 26)
  177. Tools.Font = Enum.Font.SourceSansItalic
  178. Tools.Text = "Tools"
  179. Tools.TextColor3 = Color3.new(1, 1, 1)
  180. Tools.TextSize = 23
  181.  
  182. Annoy.Name = "Annoy"
  183. Annoy.Parent = Under
  184. Annoy.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  185. Annoy.BackgroundTransparency = 0.30000001192093
  186. Annoy.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  187. Annoy.Position = UDim2.new(0.130268216, 0, 0.706806242, 0)
  188. Annoy.Size = UDim2.new(0, 90, 0, 26)
  189. Annoy.Font = Enum.Font.SourceSansItalic
  190. Annoy.Text = "Annoy"
  191. Annoy.TextColor3 = Color3.new(1, 1, 1)
  192. Annoy.TextSize = 23
  193.  
  194. Rape.Name = "Rape"
  195. Rape.Parent = Under
  196. Rape.BackgroundColor3 = Color3.new(1, 0.505882, 0.513726)
  197. Rape.BackgroundTransparency = 0.30000001192093
  198. Rape.BorderColor3 = Color3.new(1, 0.505882, 0.513726)
  199. Rape.Position = UDim2.new(0.521072805, 0, 0.706806302, 0)
  200. Rape.Size = UDim2.new(0, 90, 0, 26)
  201. Rape.Font = Enum.Font.SourceSansItalic
  202. Rape.Text = "Rape"
  203. Rape.TextColor3 = Color3.new(1, 1, 1)
  204. Rape.TextSize = 23
  205.  
  206. TextLabel.Parent = Under
  207. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  208. TextLabel.BackgroundTransparency = 1
  209. TextLabel.Position = UDim2.new(0.256704986, 0, 0.879581153, 0)
  210. TextLabel.Size = UDim2.new(0, 188, 0, 23)
  211. TextLabel.Font = Enum.Font.SourceSansItalic
  212. TextLabel.Text = "Credits to Peep and Bloxy <3"
  213. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  214. TextLabel.TextScaled = true
  215. TextLabel.TextSize = 14
  216. TextLabel.TextWrapped = true
  217.  
  218. TextLabel_2.Parent = Top
  219. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  220. TextLabel_2.BackgroundTransparency = 1
  221. TextLabel_2.Size = UDim2.new(0, 171, 0, 53)
  222. TextLabel_2.Font = Enum.Font.SourceSansItalic
  223. TextLabel_2.Text = "SUPREME"
  224. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  225. TextLabel_2.TextSize = 43
  226. -- Scripts:
  227.  
  228. --//THEMES
  229. local THEMES = {
  230. PURPLE=Color3.fromRGB(107, 1, 168);
  231. BLUE=Color3.fromRGB(0, 166, 255);
  232. DEFAULT=Color3.fromRGB(255, 129, 131);
  233. };
  234. Purple.MouseButton1Down:connect(function()
  235. Top.BackgroundColor3 = THEMES["PURPLE"];
  236. Top.BorderColor3 = THEMES["PURPLE"];
  237. for i,v in pairs(SUPREME:GetDescendants()) do
  238. if v:IsA("TextButton") and v.Name ~= "Purple" and v.Name ~= "Blue" and v.Name ~= "Default" then
  239. v.BackgroundColor3 = THEMES["PURPLE"];
  240. v.BorderColor3 = THEMES["PURPLE"];
  241. end
  242. end
  243. sendNotification("Theme","Theme set to Purple!");
  244. end)
  245. Blue.MouseButton1Down:connect(function()
  246. Top.BackgroundColor3 = THEMES["BLUE"];
  247. Top.BorderColor3 = THEMES["BLUE"];
  248. for i,v in pairs(SUPREME:GetDescendants()) do
  249. if v:IsA("TextButton") and v.Name ~= "Purple" and v.Name ~= "Blue" and v.Name ~= "Default" then
  250. v.BackgroundColor3 = THEMES["BLUE"];
  251. v.BorderColor3 = THEMES["BLUE"];
  252. end
  253. end
  254. sendNotification("Theme","Theme set to Blue!");
  255. end)
  256. Default.MouseButton1Down:connect(function()
  257. Top.BackgroundColor3 = THEMES["DEFAULT"];
  258. Top.BorderColor3 = THEMES["DEFAULT"];
  259. for i,v in pairs(SUPREME:GetDescendants()) do
  260. if v:IsA("TextButton") and v.Name ~= "Purple" and v.Name ~= "Blue" and v.Name ~= "Default" then
  261. v.BackgroundColor3 = THEMES["DEFAULT"];
  262. v.BorderColor3 = THEMES["DEFAULT"];
  263. end
  264. end
  265. sendNotification("Theme","Theme set to Default!");
  266. end)
  267. --//TWEENING
  268. local TWEENING = {
  269. CLOSE=UDim2.new(0, 192,0, 33);
  270. OPEN=UDim2.new(0, 6,0, 33);
  271. };
  272. Slider.MouseEnter:connect(function()
  273. Slider:TweenSize(TWEENING["OPEN"],"Out","Quad",1.2);
  274. end)
  275. Slider.MouseLeave:connect(function()
  276. Slider:TweenSize(TWEENING["CLOSE"],"Out","Quad",1.2);
  277. end)
  278. --//SCRIPTING
  279. Goto.MouseButton1Down:connect(function()
  280. local victim = game:GetService("Players")[VictimName.Text];
  281. Player.Character.HumanoidRootPart.CFrame = victim.Character.HumanoidRootPart.CFrame;
  282. sendNotification("Teleport","You have been teleported to "..victim.Name);
  283. end)
  284. Tools.MouseButton1Down:connect(function()
  285. for i,v in pairs(workspace:GetDescendants()) do
  286. if v:IsA("Tool") then
  287. spawn(function()
  288. v.Parent = Player.Backpack;
  289. end)
  290. end
  291. end
  292. sendNotification("Tools","You now have all tools in workspace!");
  293. end)
  294. Annoy.MouseButton1Down:connect(function()
  295. local victim = game:GetService("Players")[VictimName.Text];
  296. while victim.Character["Head"] ~= nil and Player.Character["Head"] ~= nil do
  297. Player.Character.HumanoidRootPart.CFrame = victim.Character.HumanoidRootPart.CFrame
  298. end
  299. sendNotification("Annoy","You are now annoying "..victim.Name);
  300. end)
  301. Rape.MouseButton1Down:connect(function()
  302. local victim = game:GetService("Players")[VictimName.Text];
  303. local anim = Instance.new("Animation");
  304. anim.AnimationId = 'rbxassetid://148840371';
  305. local char = Player.Character;
  306. local h = char.Humanoid:LoadAnimation(anim);
  307. h:Play();
  308. h:AdjustSpeed(2.5);
  309. while victim.Character["Head"] ~= nil and char.Character["Head"] ~= nil do
  310. char.HumanoidRootPart.CFrame = victim.Character.HumanoidRootPart.CFrame;
  311. end
  312. sendNotification("Rape","You are now raping "..victim.Name);
  313. end)
  314. Kill.MouseButton1Down:connect(function()
  315. if game.PlaceId == 524578448 then
  316. print("Yeet! Panda Express!");
  317. local function PandaTeleport(HRP,CF)
  318. for i=1,5 do
  319. wait(0.2);
  320. HRP.CFrame = CF + Vector3.new(-8,0,0);
  321. end
  322. end
  323. game:GetService("Players")[VictimName.Text].Character.Humanoid.Jump = true;
  324. PandaTeleport(game:GetService("Players")[VictimName.Text].Character.HumanoidRootPart,CFrame.new(-279.19342, 3.00001287, -106.28035));
  325. elseif game.PlaceId == 155615604 then
  326. local part = workspace.Prison_Fences.fence.damagePart
  327. local function tp(humanoidrootpart,cframe)
  328. for i=1,10 do
  329. wait(0.2)
  330. humanoidrootpart.CFrame = cframe
  331. end
  332. end
  333. for i,v in pairs(game.Players:GetPlayers()) do
  334. if v.Name == VictimName.Text then
  335. spawn(function()
  336. v.Character.Humanoid.Jump = true
  337. tp(v.Character.HumanoidRootPart,part.CFrame)
  338. end)
  339. end
  340. end
  341. elseif game.PlaceId == 606849621 then
  342. local function tp(hrp,cf)
  343. for i=1, 10 do
  344. wait(0.2)
  345. hrp.CFrame = cf
  346. end
  347. end
  348. for i,v in pairs(workspace:GetDescendants()) do
  349. if v.Name == "BarbedWire" then
  350. for _,player in pairs(game:GetService("Players"):GetPlayers()) do
  351. if player.Name == VictimName.Text then
  352. spawn(function()
  353. player.Character.Humanoid.Jump = true
  354. tp(player.Character.HumanoidRootPart,v.CFrame)
  355. end)
  356. end
  357. end
  358. end
  359. end
  360. elseif game.PlaceId == 579955134 then
  361. local function teleport(HRP,CF)
  362. for i=1,10 do
  363. wait(0.2);
  364. HRP.CFrame = CF + Vector3.new(-9,0,0);
  365. end
  366. end
  367. for i,v in pairs(game.Players:GetPlayers()) do
  368. if v.Name == VictimName.Text then
  369. spawn(function()
  370. v.Character.Humanoid.Jump = true;
  371. teleport(v.Character.HumanoidRootPart,CFrame.new(-63.227047, 57.1199837, -217.953125));
  372. end)
  373. end
  374. end
  375. end
  376. sendNotification("Kill","Success!");
  377. end)
  378. KillAll.MouseButton1Down:connect(function()
  379. if game.PlaceId == 524578448 then
  380. print("Yeet! Panda Express!");
  381. local function PandaTeleport(HRP,CF)
  382. for i=1,10 do
  383. wait(0.2);
  384. HRP.CFrame = CF+Vector3.new(-8,0,0);
  385. end;
  386. end;
  387. for i,v in pairs(game.Players:GetPlayers()) do
  388. spawn(function()
  389. v.Character.Humanoid.Jump = true;
  390. PandaTeleport(v.Character.HumanoidRootPart,CFrame.new(-279.19342, 3.00001287, -106.28035));
  391. end)
  392. end
  393. elseif game.PlaceId == 155615604 then
  394. local part = workspace.Prison_Fences.fence.damagePart
  395. local function tp(humanoidrootpart,cframe)
  396. for i=1,10 do
  397. wait(0.2)
  398. humanoidrootpart.CFrame = cframe
  399. end
  400. end
  401. for i,v in pairs(game.Players:GetPlayers()) do
  402. spawn(function()
  403. v.Character.Humanoid.Jump = true
  404. tp(v.Character.HumanoidRootPart,part.CFrame)
  405. end)
  406. end
  407. elseif game.PlaceId == 606849621 then
  408. local function tp(hrp,cf)
  409. for i=1, 10 do
  410. wait(0.2)
  411. hrp.CFrame = cf
  412. end
  413. end
  414. for i,v in pairs(workspace:GetDescendants()) do
  415. if v.Name == "BarbedWire" then
  416. for _,player in pairs(game:GetService("Players"):GetPlayers()) do
  417. spawn(function()
  418. player.Character.Humanoid.Jump = true
  419. tp(player.Character.HumanoidRootPart,v.CFrame)
  420. end)
  421. end
  422. end
  423. end
  424. elseif game.PlaceId == 579955134 then
  425. local function teleport(HRP,CF)
  426. for i=1,10 do
  427. wait(0.2);
  428. HRP.CFrame = CF + Vector3.new(-9,0,0);
  429. end
  430. end
  431. for i,v in pairs(game.Players:GetPlayers()) do
  432. spawn(function()
  433. v.Character.Humanoid.Jump = true;
  434. teleport(v.Character.HumanoidRootPart,CFrame.new(-63.227047, 57.1199837, -217.953125));
  435. end)
  436. end
  437. end
  438. sendNotification("Kill","Killed everyone! Success!");
  439. end)
  440. sendNotification("SUPREME","Loaded successfully!");
Add Comment
Please, Sign In to add comment