Advertisement
Guest User

FE GUI

a guest
May 21st, 2018
706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.57 KB | None | 0 0
  1.  
  2.  
  3. local SPAM = false
  4. local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  5. local ON = Instance.new("TextButton")
  6. local OFF = Instance.new("TextButton")
  7. local KEWL = Instance.new("TextButton")
  8. local KEW = Instance.new("TextButton")
  9. local Kill = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local KillName = Instance.new("TextLabel")
  12.  
  13.  
  14.  
  15. ScreenGui.ResetOnSpawn = false
  16.  
  17. ON.Name = "ON"
  18. ON.Parent = ScreenGui
  19. ON.BackgroundColor3 = Color3.new(1, 1, 1)
  20. ON.Size = UDim2.new(0, 200, 0, 50)
  21. ON.Font = Enum.Font.SourceSans
  22. ON.Text = "SPAM ON"
  23. ON.TextSize = 14
  24.  
  25. KEWL.Name = "GOD"
  26. KEWL.Parent = ScreenGui
  27. KEWL.BackgroundColor3 = Color3.new(1, 1, 1)
  28. KEWL.Position = UDim2.new(0, 0, 0, 150)
  29. KEWL.Size = UDim2.new(0, 200, 0, 50)
  30. KEWL.Font = Enum.Font.SourceSans
  31. KEWL.Text = "FE GOD"
  32. KEWL.TextSize = 14
  33.  
  34. Kill.Name = "KillPlr"
  35. Kill.Parent = ScreenGui
  36. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Kill.Position = UDim2.new(0, 0, 0, 250)
  38. Kill.Size = UDim2.new(0, 200, 0, 50)
  39. Kill.Font = Enum.Font.SourceSans
  40. Kill.Text = "Kill"
  41. Kill.TextSize = 23
  42.  
  43. KillName.Parent = ScreenGui
  44. KillName.BackgroundColor3 = Color3.new(1, 1, 1)
  45. KillName.Position = UDim2.new(0, 0, 0, 300)
  46. KillName.Size = UDim2.new(0, 200, 0, 50)
  47. KillName.Font = Enum.Font.SciFi
  48. KillName.Text = "PT Kill"
  49. KillName.TextSize = 15
  50.  
  51. KEW.Name = "HATTOOL"
  52. KEW.Parent = ScreenGui
  53. KEW.BackgroundColor3 = Color3.new(1, 1, 1)
  54. KEW.Position = UDim2.new(0, 0, 0, 200)
  55. KEW.Size = UDim2.new(0, 200, 0, 50)
  56. KEW.Font = Enum.Font.SourceSans
  57. KEW.Text = "HATTOOL"
  58. KEW.TextSize = 14
  59.  
  60. OFF.Name = "OFF"
  61. OFF.Parent = ScreenGui
  62. OFF.BackgroundColor3 = Color3.new(1, 1, 1)
  63. OFF.Position = UDim2.new(0, 0, 0, 50)
  64. OFF.Size = UDim2.new(0, 200, 0, 50)
  65. OFF.Font = Enum.Font.SourceSans
  66. OFF.Text = "spam off"
  67. OFF.TextSize = 14
  68.  
  69. TextLabel.Parent = ScreenGui
  70. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  71. TextLabel.Position = UDim2.new(0, 0, 0, 100)
  72. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  73. TextLabel.Font = Enum.Font.SciFi
  74. TextLabel.Text = "needs hats to work"
  75. TextLabel.TextSize = 20
  76.  
  77. ON.MouseButton1Click:connect(function()
  78.     SPAM = true
  79. end)
  80.  
  81. Kill.MouseButton1Click:connect(function()
  82.  
  83. TARGET = KillName.Text
  84.  
  85. lplayer = game:GetService("Players").LocalPlayer
  86. for i,v in pairs(lplayer.Backpack:GetChildren())do
  87. lplayer.Character.Humanoid:EquipTool(v)
  88. end
  89. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  90. if v:IsA("Tool") then
  91. v.Parent = lplayer.Character
  92. wait()
  93. v.Parent = game:GetService("Players")[TARGET].Character
  94. end
  95. end
  96. wait(1)
  97. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000, 0, 100000))
  98. end)
  99.  
  100. KEW.MouseButton1Click:connect(function()
  101.  
  102. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  103. if (v:IsA("Accessory")) then
  104. local p = Instance.new("Tool", game.Players.LocalPlayer.Character)
  105. v.Handle.Parent = p
  106. end
  107. end
  108. end)
  109.  
  110. OFF.MouseButton1Click:connect(function()
  111.     SPAM = false
  112. end)
  113.  
  114. KEWL.MouseButton1Click:connect(function()
  115.     game.Players.LocalPlayer.Character.Humanoid:Destroy()
  116. Instance.new("Humanoid", game.Players.LocalPlayer.Character)
  117. end)
  118.  
  119. while true do
  120.     if SPAM == true then
  121. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  122. if (v:IsA("Accessory")) and v.Handle:FindFirstChild("Mesh") then
  123. v.Handle:FindFirstChild("Mesh"):remove()
  124. end
  125. end
  126. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  127. if (v:IsA("Accessory")) then
  128. v.Parent = workspace
  129. end
  130. end
  131. wait(1.01)
  132. game.Players.LocalPlayer.Character.Humanoid.Health = -99
  133. end
  134. wait(3.7)
  135. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement