Advertisement
gogo92111

Untitled

Jan 4th, 2019
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.92 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Frame_2 = Instance.new("Frame")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. local TextButton_3 = Instance.new("TextButton")
  10. local TextButton_4 = Instance.new("TextButton")
  11. local TextButton_5 = Instance.new("TextButton")
  12. local TextButton_6 = Instance.new("TextButton")
  13. local TextButton_7 = Instance.new("TextButton")
  14. local TextButton_8 = Instance.new("TextButton")
  15. local TextButton_9 = Instance.new("TextButton")
  16. local TextButton_10 = Instance.new("TextButton")
  17. local TextButton_11 = Instance.new("TextButton")
  18. local TextButton_12 = Instance.new("TextButton")
  19. local TextBox = Instance.new("TextBox")
  20. local TextButton_13 = Instance.new("TextButton")
  21. local TextButton_14 = Instance.new("TextButton")
  22. local TextLabel = Instance.new("TextLabel")
  23. --Properties:
  24. ScreenGui.Parent = game.CoreGui
  25.  
  26. Frame.Parent = ScreenGui
  27. Frame.Draggable = true;
  28. Frame.Active = true
  29. Frame.Selectible = true;
  30. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  31. Frame.Position = UDim2.new(0.420385718, 0, 0.227190107, 0)
  32. Frame.Size = UDim2.new(0, 242, 0, 17)
  33.  
  34. Frame_2.Parent = Frame
  35. Frame_2.BackgroundColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  36. Frame_2.Position = UDim2.new(-0.000632207841, 0, 0.996692419, 0)
  37. Frame_2.Selectable = true
  38. Frame_2.Size = UDim2.new(0, 242, 0, 388)
  39.  
  40. function GetPlayer(plrname)
  41. for _,player in pairs(game.Players:GetPlayers()) do
  42. if plrname:lower() == player.Name:sub(1,plrname:len()):lower() then
  43. return player
  44. end
  45. end
  46. return nil
  47. end
  48.  
  49. local Banned = {}
  50.  
  51. TextButton.Parent = Frame_2
  52. TextButton.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  53. TextButton.Position = UDim2.new(0.545454562, 0, 0.823435605, 0)
  54. TextButton.Size = UDim2.new(0, 110, 0, 35)
  55. TextButton.Font = Enum.Font.SourceSans
  56. TextButton.Text = "Coming Soon"
  57. TextButton.TextColor3 = Color3.new(1, 1, 1)
  58. TextButton.TextSize = 14
  59.  
  60. TextLabel.Parent = Frame_2
  61. TextLabel.BackgroundColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  62. TextLabel.Size = UDim2.new(0, 242, 0, 72)
  63. TextLabel.Font = Enum.Font.SourceSans
  64. TextLabel.Text = "Commands :ban (Name), :kick(Name)! Click Prefix Commands ':' Button to enable this commands"
  65. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  66. TextLabel.TextScaled = true
  67. TextLabel.TextSize = 14
  68. TextLabel.TextWrapped = true
  69.  
  70. TextButton_2.Parent = Frame_2
  71. TextButton_2.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  72. TextButton_2.Position = UDim2.new(0.545454502, 0, 0.712938309, 0)
  73. TextButton_2.Size = UDim2.new(0, 110, 0, 34)
  74. TextButton_2.Font = Enum.Font.SourceSans
  75. TextButton_2.Text = "Prefix Commands ':'"
  76. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  77. TextButton_2.TextSize = 14
  78. TextButton_2.MouseButton1Down:connect(function()
  79.  
  80.  
  81. plr = game.Players.LocalPlayer
  82. prefix = ":"
  83. banned = {}
  84.  
  85. function GetPlayer(String) -- timeless/xfunnieuss
  86. local Found = {}
  87. local strl = String:lower()
  88. if strl == "all" then
  89. for i,v in pairs(game.Players:GetPlayers()) do
  90. table.insert(Found,v)
  91. end
  92. elseif strl == "others" then
  93. for i,v in pairs(game.Players:GetPlayers()) do
  94. if v.Name ~= game.Players.LocalPlayer.Name then
  95. table.insert(Found,v)
  96. end
  97. end
  98. elseif strl == "me" then
  99. for i,v in pairs(game.Players:GetPlayers()) do
  100. if v.Name == game.Players.LocalPlayer.Name then
  101. table.insert(Found,v)
  102.  
  103. end
  104. end
  105. else
  106. for i,v in pairs(game.Players:GetPlayers()) do
  107. if v.Name:lower():sub(1, #String) == String:lower() then
  108. table.insert(Found,v)
  109. print(v, "Was Banned");
  110. end
  111. end
  112. end
  113. return Found
  114. end
  115.  
  116. plr.Chatted:Connect(function(msg)
  117. if string.sub(msg, 1, 6) == (prefix.."kick ") then
  118. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  119. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  120. remote:FireServer(v)
  121. end
  122. end
  123. end)
  124.  
  125.  
  126. prefix = ":"
  127. slock = false
  128.  
  129. plr = game.Players.LocalPlayer
  130. plr.Chatted:Connect(function(ok)
  131. if string.sub(ok, 1) == (prefix.. "admin") then
  132. now = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  133.  
  134. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  135. =
  136. game.Workspace.Terrain.GameFolder.Admin.Pads['Touch to get admin'].Head.CFrame
  137.  
  138. wait(0.2)
  139.  
  140. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = now
  141. end
  142. end)
  143.  
  144. plr.Chatted:connect(function(wtf)
  145. if string.sub(wtf, 1) == (prefix.. "shutdown") then
  146. for i,v in pairs(game.Players:GetPlayers()) do
  147. if v~= plr then
  148. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  149. remote:FireServer(v)
  150. end
  151. end
  152. end
  153. end)
  154.  
  155.  
  156. plr.Chatted:connect(function(lol)
  157. if string.sub(lol, 1) == (prefix.. "slock") then
  158. slock = true
  159. print'Server Locked!'
  160. end
  161. end)
  162.  
  163. plr.Chatted:Connect(function(oyes)
  164. if string.sub(oyes, 1) == (prefix.. "unslock") then
  165. slock = false
  166. print'Server Unlocked!'
  167. end
  168. end)
  169.  
  170.  
  171. plr.Chatted:connect(function(wtf)
  172. if string.sub(wtf, 1) == (prefix.. "shutdown") then
  173. wait(1)
  174. plr:Kick'Shutdown game.'
  175. end
  176. end)
  177.  
  178.  
  179. game.Players.PlayerAdded:connect(function(xDDD)
  180. if slock == true then
  181. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  182. remote:FireServer(xDDD)
  183. end
  184. end)
  185.  
  186. plr.Chatted:Connect(function(xd)
  187. if string.sub(xd, 1) == (prefix.. "rworkspace") then
  188. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  189.  
  190. remote:FireServer(Workspace.Terrain.GameFolder)
  191. remote:FireServer(Workspace.Terrain.GameFolder)
  192. end
  193. end)
  194.  
  195. plr.Chatted:Connect(function(msg)
  196. if string.sub(msg, 1, 5) == (prefix.."ban ") then
  197. for i,v in pairs(GetPlayer(string.sub(msg, 6))) do
  198. table.insert(banned,v.Name)
  199. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  200. remote:FireServer(v)
  201. end
  202. end
  203. end)
  204.  
  205. game.Players.PlayerAdded:connect(function(x)
  206. wait(0.25)
  207. for i,v in pairs(banned) do
  208. if x.Name == v then
  209. local remote = game.Players.LocalPlayer.Backpack.Delete.delete
  210. remote:FireServer(x)
  211. print(v, "Tried to join but is banned!");
  212. end
  213. end
  214. end)
  215.  
  216. end)
  217.  
  218. TextButton_3.Parent = Frame_2
  219. TextButton_3.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  220. TextButton_3.Position = UDim2.new(0, 0, 0.82370156, 0)
  221. TextButton_3.Size = UDim2.new(0, 110, 0, 35)
  222. TextButton_3.Font = Enum.Font.SourceSans
  223. TextButton_3.Text = "Coming Soon"
  224. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  225. TextButton_3.TextSize = 14
  226.  
  227. TextButton_4.Parent = Frame_2
  228. TextButton_4.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  229. TextButton_4.Position = UDim2.new(0, 0, 0.712938309, 0)
  230. TextButton_4.Size = UDim2.new(0, 110, 0, 34)
  231. TextButton_4.Font = Enum.Font.SourceSans
  232. TextButton_4.Text = "Coming Soon"
  233. TextButton_4.TextColor3 = Color3.new(1, 1, 1)
  234. TextButton_4.TextSize = 14
  235.  
  236. TextButton_5.Parent = Frame_2
  237. TextButton_5.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  238. TextButton_5.Position = UDim2.new(0.545454502, 0, 0.599745274, 0)
  239. TextButton_5.Size = UDim2.new(0, 110, 0, 34)
  240. TextButton_5.Font = Enum.Font.SourceSans
  241. TextButton_5.Text = "(Local)No Death Pad"
  242. TextButton_5.TextColor3 = Color3.new(1, 1, 1)
  243. TextButton_5.TextSize = 14
  244. TextButton_5.MouseButton1Down:connect(function()
  245. workspace.Terrain.GameFolder.Workspace.Obby:Destroy()
  246.  
  247.  
  248. end)
  249.  
  250. TextButton_6.Parent = Frame_2
  251. TextButton_6.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  252. TextButton_6.Position = UDim2.new(0.545454562, 0, 0.487345755, 0)
  253. TextButton_6.Size = UDim2.new(0, 110, 0, 34)
  254. TextButton_6.Font = Enum.Font.SourceSans
  255. TextButton_6.Text = "(Server)No Death Pad"
  256. TextButton_6.TextColor3 = Color3.new(1, 1, 1)
  257. TextButton_6.TextSize = 14
  258. TextButton_6.MouseButton1Down:connect(function()
  259. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(workspace.Terrain.GameFolder.Workspace.Obby)
  260.  
  261.  
  262. end)
  263.  
  264. TextButton_7.Parent = Frame_2
  265. TextButton_7.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  266. TextButton_7.Position = UDim2.new(0.545454502, 0, 0.375409395, 0)
  267. TextButton_7.Size = UDim2.new(0, 110, 0, 34)
  268. TextButton_7.Font = Enum.Font.SourceSans
  269. TextButton_7.Text = "Troll"
  270. TextButton_7.TextColor3 = Color3.new(1, 1, 1)
  271. TextButton_7.TextSize = 14
  272. TextButton_7.MouseButton1Down:connect(function()
  273. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(":fling others", "All")
  274. game:GetService'Players':Chat(":fling others")
  275. game:GetService'Players':Chat(":spin others")
  276. game:GetService'Players':Chat(":name others I WANT TO SPIN TO DEATH CUZ NO ONE LIKES ME!")
  277. wait(1)
  278. game:GetService'Players':Chat(":swagify others")
  279. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(":swagify others", "All")
  280. game:GetService'Players':Chat(":seizure others")
  281. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(":seizure others", "All")
  282. wait(3)
  283. game:GetService'Players':Chat(":freeze others")
  284. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(":freeze others", "All")
  285. wait(3)
  286. game:GetService'Players':Chat(":kill others")
  287. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(":kill others", "All")
  288.  
  289.  
  290.  
  291. end)
  292.  
  293. TextButton_8.Parent = Frame_2
  294. TextButton_8.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  295. TextButton_8.Position = UDim2.new(0.545454502, 0, 0.263473034, 0)
  296. TextButton_8.Size = UDim2.new(0, 110, 0, 34)
  297. TextButton_8.Font = Enum.Font.SourceSans
  298. TextButton_8.Text = "Teleport Admin Pad"
  299. TextButton_8.TextColor3 = Color3.new(1, 1, 1)
  300. TextButton_8.TextSize = 14
  301. TextButton_8.MouseButton1Down:connect(function()
  302.  
  303.  
  304. game.workspace.Terrain.GameFolder.Admin.Regen.CanCollide = false
  305. game.workspace.Terrain.GameFolder.Admin.Regen.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  306.  
  307.  
  308. end)
  309.  
  310.  
  311. TextButton_9.Parent = Frame_2
  312. TextButton_9.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  313. TextButton_9.Position = UDim2.new(0, 0, 0.599745274, 0)
  314. TextButton_9.Size = UDim2.new(0, 110, 0, 34)
  315. TextButton_9.Font = Enum.Font.SourceSans
  316. TextButton_9.Text = "TP Inside House"
  317. TextButton_9.TextColor3 = Color3.new(1, 1, 1)
  318. TextButton_9.TextSize = 14
  319. TextButton_9.MouseButton1Down:connect(function()
  320.  
  321. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-28.3604622, 8.22999954, 69.9716721))
  322. end)
  323.  
  324.  
  325.  
  326. TextButton_10.Parent = Frame_2
  327. TextButton_10.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  328. TextButton_10.Position = UDim2.new(0, 0, 0.487345755, 0)
  329. TextButton_10.Size = UDim2.new(0, 110, 0, 34)
  330. TextButton_10.Font = Enum.Font.SourceSans
  331. TextButton_10.Text = "Admin Pad Delete!"
  332. TextButton_10.TextColor3 = Color3.new(1, 1, 1)
  333. TextButton_10.TextSize = 14
  334. TextButton_10.MouseButton1Down:connect(function()
  335. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(workspace.Terrain.GameFolder.Admin)
  336.  
  337.  
  338.  
  339. end)
  340.  
  341. TextButton_11.Parent = Frame_2
  342. TextButton_11.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  343. TextButton_11.Position = UDim2.new(0, 0, 0.375409395, 0)
  344. TextButton_11.Size = UDim2.new(0, 110, 0, 34)
  345. TextButton_11.Font = Enum.Font.SourceSans
  346. TextButton_11.Text = "Set Spawn"
  347. TextButton_11.TextColor3 = Color3.new(1, 1, 1)
  348. TextButton_11.TextSize = 14
  349. _G.dontdel = true
  350. TextButton_11.MouseButton1Down:connect(function()
  351.  
  352. if _G.dontdel == true then
  353. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(game.workspace.Terrain.GameFolder.Workspace:FindFirstChild("Spawn"))
  354. wait(0.35)
  355. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(game.workspace.Terrain.GameFolder.Workspace:FindFirstChild("Spawn"))
  356. wait(0.35)
  357. local A_1 = game.Workspace.Terrain.GameFolder.Workspace.Spawn
  358. local A_2 = CFrame.new(game.Players.LocalPlayer.Character["Left Leg"].Position)
  359. local Event = game.Players.LocalPlayer.Backpack.Move.setPos
  360. Event:FireServer(A_1, A_2)
  361. _G.dontdel = false
  362. elseif _G.dontdel == false then
  363. if game.Players.LocalPlayer.Backpack.Move.setPos then
  364. local A_1 = game.Workspace.Terrain.GameFolder.Workspace.Spawn
  365. local A_2 = CFrame.new(game.Players.LocalPlayer.Character["Left Leg"].Position)
  366. local Event = game.Players.LocalPlayer.Backpack.Move.setPos
  367. Event:FireServer(A_1, A_2)
  368. end
  369. end
  370.  
  371. end)
  372.  
  373.  
  374.  
  375. TextButton_12.Parent = Frame_2
  376. TextButton_12.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  377. TextButton_12.Position = UDim2.new(0, 0, 0.263473034, 0)
  378. TextButton_12.Size = UDim2.new(0, 110, 0, 34)
  379. TextButton_12.Font = Enum.Font.SourceSans
  380. TextButton_12.Text = "Get Admin"
  381. TextButton_12.TextColor3 = Color3.new(1, 1, 1)
  382. TextButton_12.TextSize = 14
  383. TextButton_12.MouseButton1Down:connect(function()
  384. for i=1,2 do
  385. wait()
  386. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-12.6811085, 8.62999916, 94.2793655))
  387. wait()
  388. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-16.6822491, 8.62009811, 94.2510757))
  389. wait()
  390. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-20.6922798, 8.62999916, 94.057785))
  391. wait()
  392. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-25.2887306, 8.62791443, 94.2289276))
  393. wait()
  394. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-28.5159836, 8.62999916, 94.4296722))
  395. wait()
  396. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-32.4557953, 8.62999916, 94.4649429))
  397. wait()
  398. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-36.694622, 8.62999916, 94.9627762))
  399. wait()
  400. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-41.0636101, 8.62999916, 94.1970444))
  401. wait()
  402. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-45.0423775, 8.62999916, 93.9000854))
  403. wait()
  404. end
  405. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-7.05252457, 8.22999954, 93.9055252))
  406. wait(0.30)
  407. game:GetService'Players':Chat(":sit me")
  408. wait()
  409. game:GetService'Players':Chat(":jail me")
  410. wait(1)
  411. game:GetService'Players':Chat(":unsit me")
  412. wait(.30)
  413. for i=1,4 do
  414. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-6.61637306, 8.22999954, 84.3578262))
  415. end
  416. wait()
  417. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-12.6811085, 8.62999916, 94.2793655))
  418. wait()
  419. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-16.6822491, 8.62009811, 94.2510757))
  420. wait()
  421. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-20.6922798, 8.62999916, 94.057785))
  422. wait()
  423. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-25.2887306, 8.62791443, 94.2289276))
  424. wait()
  425. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-28.5159836, 8.62999916, 94.4296722))
  426. wait()
  427. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-32.4557953, 8.62999916, 94.4649429))
  428. wait()
  429. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-36.694622, 8.62999916, 94.9627762))
  430. wait()
  431. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-41.0636101, 8.62999916, 94.1970444))
  432. wait()
  433. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-45.0423775, 8.62999916, 93.9000854))
  434. wait()
  435.  
  436.  
  437. end)
  438.  
  439.  
  440.  
  441. game.Players.PlayerAdded:connect(function(plr)
  442. for i = 1,#Banned do
  443. if Banned[i] == plr.Name then
  444. game.Players.LocalPlayer.Backpack.Delete.delete:FireServer(plr)
  445. end
  446. end
  447. end)
  448.  
  449. while true do
  450. wait(1)
  451. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Delete") then
  452. game:GetService'Players':Chat(":btools me")
  453. end
  454. end
  455. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement