Advertisement
matthewgeoff6

Untitled

Apr 25th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.46 KB | None | 0 0
  1. local MENU = Instance.new("ScreenGui")
  2. local Topbar = Instance.new("Frame")
  3. local menu = Instance.new("Frame")
  4. local Players = game:GetService("Players")
  5. local god = Instance.new("TextButton")
  6. local victim = Instance.new("TextBox")
  7. local tpto = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local FeCheck = Instance.new("TextLabel")
  10. local FE = Workspace.FilteringEnabled
  11. local reach = Instance.new("TextButton")
  12. local insane = Instance.new("TextButton")
  13.  
  14. MENU.Name = "MENU"
  15. MENU.Parent = game.CoreGui
  16.  
  17. Topbar.Name = "Topbar"
  18. Topbar.Parent = MENU
  19. Topbar.Active = true
  20. Topbar.BackgroundColor = BrickColor.new("Really black")
  21. Topbar.Draggable = true
  22. Topbar.Position = UDim2.new(0.5, -100, 0.5, -13)
  23. Topbar.Selectable = true
  24. Topbar.Size = UDim2.new(0, 200, 0, 27)
  25. Topbar.BorderColor = BrickColor.new("Really red")
  26. Topbar.BorderSizePixel = 2
  27.  
  28.  
  29. menu.Name = "menu"
  30. menu.Parent = Topbar
  31. menu.BackgroundColor = BrickColor.new("Really black")
  32. menu.Position = UDim2.new(0, 0, 0, 27)
  33. menu.Size = UDim2.new(0, 200, 0, 200)
  34. menu.BorderColor = BrickColor.new("Really red")
  35. menu.BorderSizePixel = 2
  36.  
  37. god.Name = "god"
  38. god.Parent = menu
  39. god.BackgroundColor = BrickColor.new("Really black")
  40. god.BorderSizePixel = 2
  41. god.Position = UDim2.new(0, 107, 0, 45)
  42. god.Size = UDim2.new(0, 80, 0, 50)
  43. god.Font = Enum.Font.Arial
  44. god.FontSize = Enum.FontSize.Size18
  45. god.Text = "FE GOD"
  46. god.TextColor3 = Color3.new(1, 1, 1)
  47. god.TextSize = 18
  48. god.TextWrapped = true
  49. god.BorderColor = BrickColor.new("Really red")
  50.  
  51. reach.Name = "reach"
  52. reach.Parent = menu
  53. reach.BackgroundColor = BrickColor.new("Really black")
  54. reach.BorderSizePixel = 2
  55. reach.Position = UDim2.new(0, 14, 0, 110)
  56. reach.Size = UDim2.new(0, 80, 0, 50)
  57. reach.Font = Enum.Font.Arial
  58. reach.FontSize = Enum.FontSize.Size18
  59. reach.Text = "FENCING REACH"
  60. reach.TextColor3 = Color3.new(1, 1, 1)
  61. reach.TextSize = 18
  62. reach.TextWrapped = true
  63. reach.BorderColor = BrickColor.new("Really red")
  64.  
  65. victim.Name = "victim"
  66. victim.Parent = menu
  67. victim.BackgroundColor3 = Color3.new(50, 50, 50)
  68. victim.BorderColor = BrickColor.new("Really red")
  69. victim.BorderSizePixel = 2
  70. victim.Position = UDim2.new(0, 16, 0, 10)
  71. victim.Size = UDim2.new(0, 170, 0, 25)
  72. victim.Font = Enum.Font.Arial
  73. victim.FontSize = Enum.FontSize.Size14
  74. victim.Text = ""
  75. victim.TextColor3 = Color3.new(0.1, 0.1, 0.1)
  76. victim.TextSize = 14
  77.  
  78. tpto.Name = "goto"
  79. tpto.Parent = menu
  80. tpto.BackgroundColor = BrickColor.new("Really black")
  81. tpto.BorderSizePixel = 2
  82. tpto.Position = UDim2.new(0, 14, 0, 45)
  83. tpto.Size = UDim2.new(0, 80, 0, 50)
  84. tpto.Font = Enum.Font.Arial
  85. tpto.FontSize = Enum.FontSize.Size18
  86. tpto.Text = "TP TO"
  87. tpto.TextColor3 = Color3.new(1, 1, 1)
  88. tpto.TextSize = 18
  89. tpto.BorderColor = BrickColor.new("Really red")
  90.  
  91. TextLabel.Parent = Topbar
  92. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  93. TextLabel.BackgroundTransparency = 1
  94. TextLabel.Position = UDim2.new(0, 43, 0, 0)
  95. TextLabel.Size = UDim2.new(0, 115, 0, 27)
  96. TextLabel.Font = Enum.Font.Arial
  97. TextLabel.FontSize = Enum.FontSize.Size18
  98. TextLabel.Text = "FE GUI by I low"
  99. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  100. TextLabel.TextSize = 18
  101.  
  102. insane.Name = "insane"
  103. insane.Parent = menu
  104. insane.BackgroundColor = BrickColor.new("Really black")
  105. insane.BorderSizePixel = 2
  106. insane.Position = UDim2.new(0, 107, 0, 110)
  107. insane.Size = UDim2.new(0, 80, 0, 50)
  108. insane.Font = Enum.Font.Arial
  109. insane.FontSize = Enum.FontSize.Size18
  110. insane.Text = "INSANE"
  111. insane.TextColor3 = Color3.new(1, 1, 1)
  112. insane.TextSize = 18
  113. insane.TextWrapped = true
  114. insane.BorderColor = BrickColor.new("Really red")
  115.  
  116. FeCheck.Parent = menu
  117. FeCheck.BackgroundColor3 = Color3.new(1, 1, 1)
  118. FeCheck.BackgroundTransparency = 1
  119. FeCheck.Position = UDim2.new(0, 43, 0, 168)
  120. FeCheck.Size = UDim2.new(0, 115, 0, 27)
  121. FeCheck.Font = Enum.Font.Arial
  122. FeCheck.FontSize = Enum.FontSize.Size18
  123. FeCheck.Text = ""
  124. FeCheck.TextColor3 = Color3.new(1, 1, 1)
  125. FeCheck.TextSize = 13
  126.  
  127. tpto.MouseButton1Click:connect(function()
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players:FindFirstChild(victim.Text).Character.HumanoidRootPart.Position)
  129. end)
  130.  
  131. god.MouseButton1Click:connect(function()
  132. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  133. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  134. l.Parent = game.Players.LocalPlayer.Character
  135. l.Name = "Humanoid"
  136. wait(0.1)
  137. game.Players.LocalPlayer.Character["1"]:Destroy()
  138. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  139. game.Players.LocalPlayer.Character.Animate.Disabled = true
  140. wait(0.1)
  141. game.Players.LocalPlayer.Character.Animate.Disabled = false
  142. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  143. end)
  144.  
  145. if FE == true then
  146. FeCheck.Text = "Filtering is Enabled"
  147. elseif FE == false then
  148. FeCheck.Text = "Filtering is Disabled"
  149. end
  150.  
  151. reach.MouseButton1Click:connect(function()
  152. local foil=game.Players.LocalPlayer.Backpack.Foil
  153. a=Instance.new("SelectionBox",foil.Handle)
  154. a.Adornee=foil.Handle
  155. foil.Handle.Size=Vector3.new(0.2,0.2,60)
  156. foil.Equipped:connect(function()
  157. while wait() do
  158. game.Workspace[game.Players.LocalPlayer.Name].Foil.GripPos=Vector3.new(0,0,-30)
  159. end
  160. end)
  161. end)
  162.  
  163. insane.MouseButton1Click:connect(function()
  164. for i,v in pairs(game.Players:GetPlayers()) do
  165. local AnimationId = "33796059"
  166. local Anim = Instance.new("Animation")
  167. Anim.AnimationId = "rbxassetid://"..AnimationId
  168. local k = v.Character.Humanoid:LoadAnimation(Anim)
  169. k:Play()
  170. k:AdjustSpeed(90)
  171. end
  172. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement