Pou_help

Untitled

Feb 23rd, 2019
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.85 KB | None | 0 0
  1. local lplayer = game:GetService('Players').LocalPlayer
  2.  
  3. local killing = false
  4. function GetPlayer(String)
  5. local Found = {}
  6. local strl = String:lower()
  7. if strl == "all" then
  8. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  9. table.insert(Found,v)
  10. end
  11. elseif strl == "others" then
  12. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  13. if v.Name ~= lplayer.Name then
  14. table.insert(Found,v)
  15. end
  16. end
  17. elseif strl == "me" then
  18. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  19. if v.Name == lplayer.Name then
  20. table.insert(Found,v)
  21. end
  22. end
  23. else
  24. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  25. if v.Name:lower():sub(1, #String) == String:lower() then
  26. table.insert(Found,v)
  27. end
  28. end
  29. end
  30. return Found
  31. end
  32. function ahh(thing)
  33. local asd = {'kill','gui','kill gui'}
  34. local f = string.upper(asd[math.random(1,#asd)])
  35. return f
  36. end
  37.  
  38. ScreenGui = Instance.new("ScreenGui")
  39. MainGui = Instance.new("Frame")
  40. TextLabel = Instance.new("TextLabel")
  41. TextLabel_2 = Instance.new("TextLabel")
  42. main = Instance.new("Frame")
  43. Invis = Instance.new("TextButton")
  44. Lag = Instance.new("TextButton")
  45. Unchor = Instance.new("TextButton")
  46. oof = Instance.new("TextButton")
  47. Bringall = Instance.new("TextButton")
  48. PunishAll = Instance.new("TextButton")
  49. Page2Button = Instance.new("TextButton")
  50. Page2 = Instance.new("Frame")
  51. Goto = Instance.new("TextButton")
  52. View = Instance.new("TextButton")
  53. Noview = Instance.new("TextButton")
  54. Fling = Instance.new("TextButton")
  55. nofling = Instance.new("TextButton")
  56. Kill = Instance.new("TextButton")
  57. Page3Button = Instance.new("TextButton")
  58. BackToPage1 = Instance.new("TextButton")
  59. Player = Instance.new("TextBox")
  60. Page3 = Instance.new("Frame")
  61. BackToPage2 = Instance.new("TextButton")
  62. TextLabel_3 = Instance.new("TextLabel")
  63.  
  64. ScreenGui.Parent = game.CoreGui
  65.  
  66. MainGui.Name = "MainGui"
  67. MainGui.Parent = ScreenGui
  68. MainGui.BackgroundColor3 = Color3.new(0.580392, 0.580392, 0.580392)
  69. MainGui.BorderSizePixel = 0
  70. MainGui.Position = UDim2.new(0.526666641, 0, 0.404052436, 0)
  71. MainGui.Size = UDim2.new(0, 447, 0, 333)
  72. MainGui.Active = true
  73. MainGui.Draggable = true
  74.  
  75. TextLabel.Parent = MainGui
  76. TextLabel.BackgroundColor3 = Color3.new(0.545098, 0.545098, 0.545098)
  77. TextLabel.BorderSizePixel = 0
  78. TextLabel.Position = UDim2.new(0, 0, 0.111164451, 0)
  79. TextLabel.Size = UDim2.new(0, 447, 0, 58)
  80. TextLabel.Font = Enum.Font.SourceSans
  81. TextLabel.FontSize = Enum.FontSize.Size32
  82. TextLabel.Text = "Fuzk Fe Gui"
  83. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  84. TextLabel.TextSize = 30
  85.  
  86. TextLabel_2.Parent = MainGui
  87. TextLabel_2.BackgroundColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  88. TextLabel_2.BorderSizePixel = 0
  89. TextLabel_2.Size = UDim2.new(0, 447, 0, 38)
  90. TextLabel_2.Font = Enum.Font.SourceSans
  91. TextLabel_2.FontSize = Enum.FontSize.Size14
  92. TextLabel_2.Text = ""
  93. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  94. TextLabel_2.TextSize = 14
  95.  
  96. main.Name = "main"
  97. main.Parent = MainGui
  98. main.BackgroundColor3 = Color3.new(0.580392, 0.580392, 0.580392)
  99. main.BorderSizePixel = 0
  100. main.Position = UDim2.new(0, 0, 0.283932239, 0)
  101. main.Size = UDim2.new(0, 446, 0, 238)
  102.  
  103. Invis.Name = "Invis"
  104. Invis.Parent = main
  105. Invis.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  106. Invis.Position = UDim2.new(0.0358042195, 0, 0.0740150958, 0)
  107. Invis.Size = UDim2.new(0, 124, 0, 44)
  108. Invis.Font = Enum.Font.SourceSansBold
  109. Invis.FontSize = Enum.FontSize.Size24
  110. Invis.Text = "Invisible"
  111. Invis.TextColor3 = Color3.new(1, 1, 1)
  112. Invis.TextSize = 20
  113. Invis.TextStrokeTransparency = 0
  114. Invis.MouseButton1Down:connect(function()
  115. local player = game.Players.LocalPlayer
  116. position = player.Character.HumanoidRootPart.Position
  117. wait(0.1)
  118. player.Character:MoveTo(position + Vector3.new(0, 1000000, 0))
  119. wait(0.1)
  120. humanoidrootpart = player.Character.HumanoidRootPart:clone()
  121. wait(0.1)
  122. player.Character.HumanoidRootPart:Destroy()
  123. humanoidrootpart.Parent = player.Character
  124. player.Character:MoveTo(position)
  125. wait()
  126.  
  127.  
  128. end)
  129.  
  130. Lag.Name = "Lag"
  131. Lag.Parent = main
  132. Lag.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  133. Lag.Position = UDim2.new(0.346766174, 0, 0.0740150958, 0)
  134. Lag.Size = UDim2.new(0, 124, 0, 44)
  135. Lag.Font = Enum.Font.SourceSansBold
  136. Lag.FontSize = Enum.FontSize.Size24
  137. Lag.Text = "Lag"
  138. Lag.TextColor3 = Color3.new(1, 1, 1)
  139. Lag.TextSize = 20
  140. Lag.TextStrokeTransparency = 0
  141. Lag.MouseButton1Down:connect(function()
  142.  
  143.  
  144. local lag_strength = 100
  145.  
  146.  
  147. local LocalPlayer = game:GetService("Players").LocalPlayer
  148. while game:GetService("RunService").RenderStepped:Wait() do
  149. for i = 1, lag_strength do
  150. local anim = Instance.new("Animation")
  151. anim.AnimationId = "Hackmaster12 Was Hereeee!!!"..math.random()
  152. LocalPlayer.Character.Humanoid:LoadAnimation(anim):Play()
  153. anim:Destroy()
  154. end
  155. end
  156. end)
  157.  
  158. Unchor.Name = "Unchor"
  159. Unchor.Parent = main
  160. Unchor.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  161. Unchor.Position = UDim2.new(0.644305348, 0, 0.0740150958, 0)
  162. Unchor.Size = UDim2.new(0, 124, 0, 44)
  163. Unchor.Font = Enum.Font.SourceSansBold
  164. Unchor.FontSize = Enum.FontSize.Size24
  165. Unchor.Text = "Unanchored Parts Follow"
  166. Unchor.TextColor3 = Color3.new(1, 1, 1)
  167. Unchor.TextSize = 20
  168. Unchor.TextStrokeTransparency = 0
  169. Unchor.TextWrapped = true
  170. Unchor.MouseButton1Down:connect(function()
  171. local LocalPlayer = game:GetService("Players").LocalPlayer
  172. local unanchoredparts = {}
  173. local movers = {}
  174. for index, part in pairs(workspace:GetDescendants()) do
  175. if part:IsA("Part") and part.Anchored == false and part:IsDescendantOf(LocalPlayer.Character) == false then
  176. table.insert(unanchoredparts, part)
  177. part.Massless = true
  178. part.CanCollide = false
  179. if part:FindFirstChildOfClass("BodyPosition") ~= nil then
  180. part:FindFirstChildOfClass("BodyPosition"):Destroy()
  181. end
  182. end
  183. end
  184. for index, part in pairs(unanchoredparts) do
  185. local mover = Instance.new("BodyPosition", part)
  186. table.insert(movers, mover)
  187. mover.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  188. end
  189. repeat
  190. for index, mover in pairs(movers) do
  191. mover.Position = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame:PointToWorldSpace(Vector3.new(0, 0, 5))
  192. end
  193. wait(0.5)
  194. until LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0
  195. for _, mover in pairs(movers) do
  196. mover:Destroy()
  197. end
  198.  
  199. end)
  200.  
  201. oof.Name = "oof"
  202. oof.Parent = main
  203. oof.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  204. oof.Position = UDim2.new(0.038031321, 0, 0.316009164, 0)
  205. oof.Size = UDim2.new(0, 124, 0, 44)
  206. oof.Font = Enum.Font.SourceSansBold
  207. oof.FontSize = Enum.FontSize.Size24
  208. oof.Text = "Oof Sound"
  209. oof.TextColor3 = Color3.new(1, 1, 1)
  210. oof.TextSize = 20
  211. oof.TextStrokeTransparency = 0
  212. oof.MouseButton1Down:connect(function()
  213. repeat wait()
  214. for v,i in pairs(game.Players:GetChildren()) do
  215. i.Character.Head.Died.Playing = true
  216. end
  217. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
  218.  
  219. end)
  220.  
  221. Bringall.Name = "Bringall"
  222. Bringall.Parent = main
  223. Bringall.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  224. Bringall.Position = UDim2.new(0.348993301, 0, 0.316009164, 0)
  225. Bringall.Size = UDim2.new(0, 124, 0, 44)
  226. Bringall.Font = Enum.Font.SourceSansBold
  227. Bringall.FontSize = Enum.FontSize.Size24
  228. Bringall.Text = "Bring All"
  229. Bringall.TextColor3 = Color3.new(1, 1, 1)
  230. Bringall.TextSize = 20
  231. Bringall.TextStrokeTransparency = 0
  232. Bringall.MouseButton1Down:connect(function()
  233. local SpreadAmount = 1 -- You don't really have to change this
  234.  
  235. --[[Brings multiple players to you from the server (sometimes all)
  236. Spread_Amount = How much you want to spread the tools
  237. (Might bring more players)
  238. Cyclically's FE Tool Duplicate Tools V3
  239. https://v3rmillion.net/member.php?action=profile&uid=785986
  240.  
  241. %% Don't touch below unless you know what you're doing %%
  242. ]]
  243.  
  244. local Spread_Amount = SpreadAmount - math.random(.0625,.1875)
  245. local toolamount = -8*-8/4+math.random(-1,0)
  246. local LocalPlayer = game:GetService("Players").LocalPlayer
  247. local runservice = game:GetService("RunService")
  248. local characters = {}
  249. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  250. local currentamount = #LocalPlayer.Backpack:GetChildren()
  251. LocalPlayer.Character.Archivable = true
  252. local tempchar = LocalPlayer.Character:Clone()
  253. tempchar.Parent = workspace
  254. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  255. local renderstepped = runservice.RenderStepped:Connect(function()
  256. workspace.CurrentCamera.CameraSubject = tempchar:FindFirstChild("Humanoid")
  257. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  258. if tool:IsA("Tool") then
  259. tool.Parent = LocalPlayer
  260. end
  261. end
  262. LocalPlayer.Character:ClearAllChildren()
  263. local char = Instance.new("Model", workspace)
  264. table.insert(characters, char)
  265. Instance.new("Humanoid", char)
  266. LocalPlayer.Character = char
  267. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character ~= nil
  268. end)
  269. repeat runservice.RenderStepped:Wait() until #LocalPlayer:GetChildren() - 4 - currentamount >= toolamount + 1
  270. renderstepped:Disconnect()
  271. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil
  272. for _, char in pairs(characters) do
  273. char:Destroy()
  274. end
  275. for _, tool in pairs(LocalPlayer:GetChildren()) do
  276. if tool:IsA("Tool") then
  277. tool.Parent = LocalPlayer.Backpack
  278. end
  279. end
  280. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  281. tempchar:Destroy()
  282. wait()
  283. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  284. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),1*Spread_Amount,-1*Spread_Amount)
  285. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  286. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(-1*Spread_Amount-math.random(1,6),-1*Spread_Amount,-2*Spread_Amount)
  287. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  288. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-4*Spread_Amount)
  289. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  290. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-2.5*Spread_Amount)
  291. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  292. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),3*Spread_Amount,-3*Spread_Amount)
  293. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  294. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),-1*Spread_Amount,-2*Spread_Amount)
  295. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  296. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1.5*Spread_Amount-math.random(1,6),.2*Spread_Amount,-3*Spread_Amount)
  297. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  298. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2.5*Spread_Amount-math.random(1,6),.6*Spread_Amount,-4*Spread_Amount)
  299. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  300. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-1*Spread_Amount)
  301. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  302. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(3*Spread_Amount-math.random(1,6),0*Spread_Amount,-2*Spread_Amount)
  303. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  304. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),.2*Spread_Amount,-6*Spread_Amount)
  305. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  306. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(3*Spread_Amount-math.random(1,6),-.2*Spread_Amount,-5*Spread_Amount)
  307. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  308. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),3*Spread_Amount,-1*Spread_Amount)
  309. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  310. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),2*Spread_Amount,-5*Spread_Amount)
  311. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  312. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(4*Spread_Amount-math.random(1,6),1*Spread_Amount,-1*Spread_Amount)
  313. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  314. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),0.3*Spread_Amount,-3*Spread_Amount)
  315. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  316. wait()
  317. LocalPlayer.Character.Animate.Disabled = true
  318. wait()
  319. for i=1,toolamount do
  320. LocalPlayer.Character:FindFirstChildOfClass("Tool").Parent = workspace.Terrain
  321. end
  322. wait()
  323. for v,i in pairs(game.Players:GetChildren()) do
  324. i.Character.HumanoidRootPart.CFrame = LocalPlayer.Character["Right Arm"].CFrame
  325. end
  326. wait()
  327. LocalPlayer.Character.Animate.Disabled = false
  328. end)
  329.  
  330. PunishAll.Name = "PunishAll"
  331. PunishAll.Parent = main
  332. PunishAll.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  333. PunishAll.Position = UDim2.new(0.646532476, 0, 0.316009164, 0)
  334. PunishAll.Size = UDim2.new(0, 124, 0, 44)
  335. PunishAll.Font = Enum.Font.SourceSansBold
  336. PunishAll.FontSize = Enum.FontSize.Size24
  337. PunishAll.Text = "Punish All"
  338. PunishAll.TextColor3 = Color3.new(1, 1, 1)
  339. PunishAll.TextSize = 20
  340. PunishAll.TextStrokeTransparency = 0
  341. PunishAll.MouseButton1Down:connect(function()
  342. local SpreadAmount = 1 -- You don't really have to change this
  343.  
  344. --[[Punishes multiple players to you from the server (sometimes all)
  345. Spread_Amount = How much you want to spread the tools
  346. (Might punish more players)
  347. Cyclically's FE Tool Duplicate Tools V3
  348. https://v3rmillion.net/member.php?action=profile&uid=785986
  349.  
  350. %% Don't touch below unless you know what you're doing %%
  351. ]]
  352.  
  353. local Spread_Amount = SpreadAmount - math.random(.0625,.1875)
  354. local toolamount = -8*-8/4+math.random(-1,0)
  355. local LocalPlayer = game:GetService("Players").LocalPlayer
  356. local runservice = game:GetService("RunService")
  357. local characters = {}
  358. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  359. local currentamount = #LocalPlayer.Backpack:GetChildren()
  360. LocalPlayer.Character.Archivable = true
  361. local tempchar = LocalPlayer.Character:Clone()
  362. tempchar.Parent = workspace
  363. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  364. local renderstepped = runservice.RenderStepped:Connect(function()
  365. workspace.CurrentCamera.CameraSubject = tempchar:FindFirstChild("Humanoid")
  366. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  367. if tool:IsA("Tool") then
  368. tool.Parent = LocalPlayer
  369. end
  370. end
  371. LocalPlayer.Character:ClearAllChildren()
  372. local char = Instance.new("Model", workspace)
  373. table.insert(characters, char)
  374. Instance.new("Humanoid", char)
  375. LocalPlayer.Character = char
  376. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character ~= nil
  377. end)
  378. repeat runservice.RenderStepped:Wait() until #LocalPlayer:GetChildren() - 4 - currentamount >= toolamount + 1
  379. renderstepped:Disconnect()
  380. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil
  381. for _, char in pairs(characters) do
  382. char:Destroy()
  383. end
  384. for _, tool in pairs(LocalPlayer:GetChildren()) do
  385. if tool:IsA("Tool") then
  386. tool.Parent = LocalPlayer.Backpack
  387. end
  388. end
  389. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  390. tempchar:Destroy()
  391. wait()
  392. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  393. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),1*Spread_Amount,-1*Spread_Amount)
  394. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  395. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(-1*Spread_Amount-math.random(1,6),-1*Spread_Amount,-2*Spread_Amount)
  396. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  397. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-4*Spread_Amount)
  398. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  399. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-2.5*Spread_Amount)
  400. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  401. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),3*Spread_Amount,-3*Spread_Amount)
  402. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  403. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),-1*Spread_Amount,-2*Spread_Amount)
  404. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  405. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1.5*Spread_Amount-math.random(1,6),.2*Spread_Amount,-3*Spread_Amount)
  406. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  407. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2.5*Spread_Amount-math.random(1,6),.6*Spread_Amount,-4*Spread_Amount)
  408. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  409. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),0.1*Spread_Amount,-1*Spread_Amount)
  410. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  411. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(3*Spread_Amount-math.random(1,6),0*Spread_Amount,-2*Spread_Amount)
  412. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  413. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),.2*Spread_Amount,-6*Spread_Amount)
  414. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  415. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(3*Spread_Amount-math.random(1,6),-.2*Spread_Amount,-5*Spread_Amount)
  416. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  417. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(1*Spread_Amount-math.random(1,6),3*Spread_Amount,-1*Spread_Amount)
  418. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  419. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(2*Spread_Amount-math.random(1,6),2*Spread_Amount,-5*Spread_Amount)
  420. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  421. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(4*Spread_Amount-math.random(1,6),1*Spread_Amount,-1*Spread_Amount)
  422. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  423. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").GripPos = Vector3.new(5*Spread_Amount-math.random(1,6),0.3*Spread_Amount,-3*Spread_Amount)
  424. LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  425. wait()
  426. LocalPlayer.Character.Animate.Disabled = true
  427. wait()
  428. for i=1,toolamount do
  429. LocalPlayer.Character:FindFirstChildOfClass("Tool").Parent = workspace.Terrain
  430. end
  431. wait()
  432. for v,i in pairs(game.Players:GetChildren()) do
  433. i.Character.HumanoidRootPart.CFrame = LocalPlayer.Character["Right Arm"].CFrame
  434. end
  435. wait(math.random(0,.00375))
  436. for i=1,math.random(2,8) do wait(math.random(0,.0625))
  437. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,1000000000,0)
  438. end
  439. end)
  440.  
  441. Page2Button.Name = "Page2Button"
  442. Page2Button.Parent = main
  443. Page2Button.BackgroundColor3 = Color3.new(0.505882, 0.505882, 0.505882)
  444. Page2Button.Position = UDim2.new(0.794183373, 0, 0.874492049, 0)
  445. Page2Button.Size = UDim2.new(0, 42, 0, 23)
  446. Page2Button.Font = Enum.Font.GothamBlack
  447. Page2Button.FontSize = Enum.FontSize.Size14
  448. Page2Button.Text = ">"
  449. Page2Button.TextColor3 = Color3.new(0, 0, 0)
  450. Page2Button.TextSize = 14
  451. Page2Button.MouseButton1Down:connect(function()
  452. main.Visible = false
  453. Page2.Visible = true
  454. end)
  455.  
  456. Page2.Name = "Page2"
  457. Page2.Parent = MainGui
  458. Page2.BackgroundColor3 = Color3.new(0.580392, 0.580392, 0.580392)
  459. Page2.BorderSizePixel = 0
  460. Page2.Position = UDim2.new(0, 0, 0.283932239, 0)
  461. Page2.Size = UDim2.new(0, 446, 0, 238)
  462. Page2.Visible = false
  463.  
  464. Goto.Name = "Goto"
  465. Goto.Parent = Page2
  466. Goto.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  467. Goto.Position = UDim2.new(0.0358042195, 0, 0.0740150958, 0)
  468. Goto.Size = UDim2.new(0, 124, 0, 44)
  469. Goto.Font = Enum.Font.SourceSansBold
  470. Goto.FontSize = Enum.FontSize.Size24
  471. Goto.Text = "Goto"
  472. Goto.TextColor3 = Color3.new(1, 1, 1)
  473. Goto.TextSize = 20
  474. Goto.TextStrokeTransparency = 0
  475. Goto.MouseButton1Down:connect(function()
  476.  
  477. local noob = unpack(GetPlayer(Player.Text)).Character
  478.  
  479. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = noob.HumanoidRootPart.CFrame
  480. end)
  481.  
  482.  
  483. View.Name = "View"
  484. View.Parent = Page2
  485. View.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  486. View.Position = UDim2.new(0.346766174, 0, 0.0740150958, 0)
  487. View.Size = UDim2.new(0, 124, 0, 44)
  488. View.Font = Enum.Font.SourceSansBold
  489. View.FontSize = Enum.FontSize.Size24
  490. View.Text = "View"
  491. View.TextColor3 = Color3.new(1, 1, 1)
  492. View.TextSize = 20
  493. View.TextStrokeTransparency = 0
  494. View.MouseButton1Down:connect(function()
  495. for i,v in pairs(GetPlayer(Player.Text)) do
  496. if game:GetService("Players")[v.Name].Character.Humanoid then
  497. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  498. else
  499. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  500. end
  501. end
  502.  
  503. end)
  504.  
  505. Noview.Name = "Noview"
  506. Noview.Parent = Page2
  507. Noview.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  508. Noview.Position = UDim2.new(0.644305348, 0, 0.0740150958, 0)
  509. Noview.Size = UDim2.new(0, 124, 0, 44)
  510. Noview.Font = Enum.Font.SourceSansBold
  511. Noview.FontSize = Enum.FontSize.Size24
  512. Noview.Text = "Unview"
  513. Noview.TextColor3 = Color3.new(1, 1, 1)
  514. Noview.TextSize = 20
  515. Noview.TextStrokeTransparency = 0
  516. Noview.TextWrapped = true
  517. Noview.MouseButton1Down:connect(function()
  518. if lplayer.Character.Humanoid then
  519. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  520. else
  521. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  522. end
  523. end)
  524.  
  525. Fling.Name = "Fling"
  526. Fling.Parent = Page2
  527. Fling.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  528. Fling.Position = UDim2.new(0.038031321, 0, 0.316009164, 0)
  529. Fling.Size = UDim2.new(0, 124, 0, 44)
  530. Fling.Font = Enum.Font.SourceSansBold
  531. Fling.FontSize = Enum.FontSize.Size24
  532. Fling.Text = "Fling"
  533. Fling.TextColor3 = Color3.new(1, 1, 1)
  534. Fling.TextSize = 20
  535. Fling.TextStrokeTransparency = 0
  536. Fling.MouseButton1Down:connect(function()
  537. local target = unpack(GetPlayer(Player.Text)).Character
  538.  
  539. game:GetService'Players'.LocalPlayer.Character.Humanoid.PlatformStand = true
  540. killing = true
  541. local coin = Instance.new('BodyThrust',game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart)
  542. coin.Force = Vector3.new(9999,9999,9999)
  543. coin.Name = "killforce"
  544. repeat game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = target.Head.CFrame;coin.Location = target.Head.Position game["Run Service"].Heartbeat:wait() until not target.Head or killing == false
  545. end)
  546.  
  547. nofling.Name = "nofling"
  548. nofling.Parent = Page2
  549. nofling.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  550. nofling.Position = UDim2.new(0.348993301, 0, 0.316009164, 0)
  551. nofling.Size = UDim2.new(0, 124, 0, 44)
  552. nofling.Font = Enum.Font.SourceSansBold
  553. nofling.FontSize = Enum.FontSize.Size24
  554. nofling.Text = "Stop Flinging "
  555. nofling.TextColor3 = Color3.new(1, 1, 1)
  556. nofling.TextSize = 20
  557. nofling.TextStrokeTransparency = 0
  558. nofling.MouseButton1Down:connect(function()
  559. ypcall(function()
  560. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.yeetforce:Destroy()
  561. game:GetService'Players'.LocalPlayer.Character.Humanoid.PlatformStand = false
  562. end)
  563. killing = false
  564. end)
  565.  
  566. Kill.Name = "Kill"
  567. Kill.Parent = Page2
  568. Kill.BackgroundColor3 = Color3.new(0.611765, 0.611765, 0.611765)
  569. Kill.Position = UDim2.new(0.646532476, 0, 0.316009164, 0)
  570. Kill.Size = UDim2.new(0, 124, 0, 44)
  571. Kill.Font = Enum.Font.SourceSansBold
  572. Kill.FontSize = Enum.FontSize.Size24
  573. Kill.Text = "Kill"
  574. Kill.TextColor3 = Color3.new(1, 1, 1)
  575. Kill.TextSize = 20
  576. Kill.TextStrokeTransparency = 0
  577. Kill.MouseButton1Down:connect(function()
  578. for i,v in pairs(GetPlayer(Player.Text)) do
  579.  
  580.  
  581.  
  582. local LocalPlayer = game:GetService("Players").LocalPlayer
  583. local target = game:GetService("Players")[v.Name]
  584. local torsoname = "Torso"
  585. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  586. torsoname = "UpperTorso"
  587. end
  588. if target.Character ~= nil then
  589. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  590. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  591. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  592. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  593. local hathandle = hat.Handle
  594. hathandle.Parent = tool
  595. hathandle.Massless = true
  596. tool.GripPos = Vector3.new(0, 9e99, 0)
  597. tool.Parent = LocalPlayer.Character
  598. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  599. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  600. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  601. repeat
  602. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = target.Character:FindFirstChild("HumanoidRootPart").CFrame
  603. wait()
  604. until target.Character == nil or target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - target.Character:FindFirstChild("Humanoid").WalkSpeed) > (target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  605. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  606. hathandle.Parent = hat
  607. hathandle.Massless = false
  608. tool:Destroy()
  609. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  610. end
  611. end
  612. end)
  613.  
  614. Page3Button.Name = "Page3Button"
  615. Page3Button.Parent = Page2
  616. Page3Button.BackgroundColor3 = Color3.new(0.505882, 0.505882, 0.505882)
  617. Page3Button.Position = UDim2.new(0.794183373, 0, 0.874492049, 0)
  618. Page3Button.Size = UDim2.new(0, 42, 0, 23)
  619. Page3Button.Font = Enum.Font.GothamBlack
  620. Page3Button.FontSize = Enum.FontSize.Size14
  621. Page3Button.Text = ">"
  622. Page3Button.TextColor3 = Color3.new(0, 0, 0)
  623. Page3Button.TextSize = 14
  624. Page3Button.MouseButton1Down:connect(function()
  625. Page2.Visible = false
  626. main.Visible = false
  627. Page3.Visible = true
  628. end)
  629.  
  630. BackToPage1.Name = "BackToPage1"
  631. BackToPage1.Parent = Page2
  632. BackToPage1.BackgroundColor3 = Color3.new(0.505882, 0.505882, 0.505882)
  633. BackToPage1.Position = UDim2.new(0.126021922, 0, 0.874492049, 0)
  634. BackToPage1.Size = UDim2.new(0, 42, 0, 23)
  635. BackToPage1.Font = Enum.Font.GothamBlack
  636. BackToPage1.FontSize = Enum.FontSize.Size14
  637. BackToPage1.Text = "<"
  638. BackToPage1.TextColor3 = Color3.new(0, 0, 0)
  639. BackToPage1.TextSize = 14
  640. BackToPage1.MouseButton1Down:connect(function()
  641. Page2.Visible = false
  642. main.Visible = true
  643. Page3.Visible = false
  644. end)
  645.  
  646. Player.Name = "Player"
  647. Player.Parent = Page2
  648. Player.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  649. Player.Position = UDim2.new(0.260089695, 0, 0.613445401, 0)
  650. Player.Size = UDim2.new(0, 200, 0, 50)
  651. Player.Font = Enum.Font.SourceSansBold
  652. Player.FontSize = Enum.FontSize.Size24
  653. Player.Text = "Username"
  654. Player.TextColor3 = Color3.new(0, 0, 0)
  655. Player.TextSize = 20
  656. Player.TextWrapped = true
  657.  
  658. Page3.Name = "Page3"
  659. Page3.Parent = MainGui
  660. Page3.BackgroundColor3 = Color3.new(0.580392, 0.580392, 0.580392)
  661. Page3.BorderSizePixel = 0
  662. Page3.Position = UDim2.new(0, 0, 0.283932239, 0)
  663. Page3.Size = UDim2.new(0, 446, 0, 238)
  664. Page3.Visible = false
  665.  
  666. BackToPage2.Name = "BackToPage2"
  667. BackToPage2.Parent = Page3
  668. BackToPage2.BackgroundColor3 = Color3.new(0.505882, 0.505882, 0.505882)
  669. BackToPage2.Position = UDim2.new(0.126021922, 0, 0.874492049, 0)
  670. BackToPage2.Size = UDim2.new(0, 42, 0, 23)
  671. BackToPage2.Font = Enum.Font.GothamBlack
  672. BackToPage2.FontSize = Enum.FontSize.Size14
  673. BackToPage2.Text = "<"
  674. BackToPage2.TextColor3 = Color3.new(0, 0, 0)
  675. BackToPage2.TextSize = 14
  676. BackToPage2.MouseButton1Down:connect(function()
  677. Page2.Visible = true
  678. main.Visible = false
  679. Page3.Visible = false
  680. end)
  681.  
  682. TextLabel_3.Parent = Page3
  683. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  684. TextLabel_3.BackgroundTransparency = 1
  685. TextLabel_3.BorderSizePixel = 0
  686. TextLabel_3.Size = UDim2.new(0, 446, 0, 195)
  687. TextLabel_3.Font = Enum.Font.SourceSansSemibold
  688. TextLabel_3.FontSize = Enum.FontSize.Size48
  689. TextLabel_3.Text = "Made By Hackmaster12"
  690. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  691. TextLabel_3.TextSize = 40
Advertisement
Add Comment
Please, Sign In to add comment