Advertisement
thomas13215

Roblox FE Fling/Kill Gui V2!

Jan 3rd, 2019
46,339
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.25 KB | None | 2 0
  1. --FE fling/Kill gui V2
  2. -- Instances:
  3. local FEFling = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local Credit = Instance.new("TextLabel")
  7. local Start = Instance.new("TextButton")
  8. local Stop = Instance.new("TextButton")
  9. local X = Instance.new("TextButton")
  10. local Desc = Instance.new("TextLabel")
  11. local Desc_2 = Instance.new("TextLabel")
  12. local frame = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. FEFling.Name = "FEFling"
  16. FEFling.Parent = game.CoreGui
  17.  
  18. main.Name = "main"
  19. main.Parent = FEFling
  20. main.BackgroundColor3 = Color3.new(0, 0, 0)
  21. main.BorderColor3 = Color3.new(1, 1, 1)
  22. main.Position = UDim2.new(0.432220012, 0, 0.335380882, 0)
  23. main.Size = UDim2.new(0, 206, 0, 267)
  24. main.Visible = false
  25. main.Draggable = true
  26.  
  27. Title.Name = "Title"
  28. Title.Parent = main
  29. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Title.BackgroundTransparency = 1
  31. Title.Size = UDim2.new(0, 206, 0, 31)
  32. Title.Font = Enum.Font.SourceSans
  33. Title.Text = "FE Kill/Fling V2"
  34. Title.TextColor3 = Color3.new(1, 1, 1)
  35. Title.TextSize = 14
  36.  
  37. Credit.Name = "Credit"
  38. Credit.Parent = main
  39. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  40. Credit.BackgroundTransparency = 1
  41. Credit.Position = UDim2.new(0, 0, 0.116104871, 0)
  42. Credit.Size = UDim2.new(0, 206, 0, 31)
  43. Credit.Font = Enum.Font.SourceSans
  44. Credit.Text = "By Fortress Master and JackMcJagger15"
  45. Credit.TextColor3 = Color3.new(1, 1, 1)
  46. Credit.TextSize = 14
  47.  
  48. Start.Name = "Start'"
  49. Start.Parent = main
  50. Start.BackgroundColor3 = Color3.new(0, 0, 0)
  51. Start.BorderColor3 = Color3.new(1, 1, 1)
  52. Start.Position = UDim2.new(0.0388349518, 0, 0.280898869, 0)
  53. Start.Size = UDim2.new(0, 191, 0, 50)
  54. Start.Font = Enum.Font.SourceSans
  55. Start.Text = "Start"
  56. Start.TextColor3 = Color3.new(1, 1, 1)
  57. Start.TextScaled = true
  58. Start.TextSize = 14
  59. Start.TextWrapped = true
  60. Start.MouseButton1Down:connect(function()
  61. power = 500
  62.  
  63. game:GetService('RunService').Stepped:connect(function()
  64. game.Players.LocalPlayer.Character.Head.CanCollide = false
  65. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  66. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  67. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  68. end)
  69.  
  70. wait(.1)
  71. local bambam = Instance.new("BodyThrust")
  72. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  73. bambam.Force = Vector3.new(power,0,power)
  74. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  75. end)
  76.  
  77. Stop.Name = "Stop["
  78. Stop.Parent = main
  79. Stop.BackgroundColor3 = Color3.new(0, 0, 0)
  80. Stop.BorderColor3 = Color3.new(1, 1, 1)
  81. Stop.Position = UDim2.new(0.0388349518, 0, 0.531835198, 0)
  82. Stop.Size = UDim2.new(0, 191, 0, 50)
  83. Stop.Font = Enum.Font.SourceSans
  84. Stop.Text = "Stop"
  85. Stop.TextColor3 = Color3.new(1, 1, 1)
  86. Stop.TextScaled = true
  87. Stop.TextSize = 14
  88. Stop.TextWrapped = true
  89. Stop.MouseButton1Down:connect(function()
  90. power = 0
  91.  
  92. game:GetService('RunService').Stepped:connect(function()
  93. game.Players.LocalPlayer.Character.Head.CanCollide = false
  94. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  95. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  96. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  97. end)
  98.  
  99. wait(.1)
  100. local bambam = Instance.new("BodyThrust")
  101. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  102. bambam.Force = Vector3.new(power,0,power)
  103. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  104. end)
  105.  
  106. X.Name = "X"
  107. X.Parent = main
  108. X.BackgroundColor3 = Color3.new(0, 0, 0)
  109. X.BorderColor3 = Color3.new(1, 1, 1)
  110. X.Position = UDim2.new(0.888349533, 0, 0, 0)
  111. X.Size = UDim2.new(0, 23, 0, 24)
  112. X.Font = Enum.Font.SourceSans
  113. X.Text = "X"
  114. X.TextColor3 = Color3.new(1, 1, 1)
  115. X.TextScaled = true
  116. X.TextSize = 14
  117. X.TextWrapped = true
  118. X.MouseButton1Down:connect(function()
  119. main.Visible = false
  120. open.Visible = true
  121. end)
  122.  
  123. Desc.Name = "Desc"
  124. Desc.Parent = main
  125. Desc.BackgroundColor3 = Color3.new(1, 1, 1)
  126. Desc.BackgroundTransparency = 1
  127. Desc.Position = UDim2.new(0, 0, 0.749063671, 0)
  128. Desc.Size = UDim2.new(0, 206, 0, 31)
  129. Desc.Font = Enum.Font.SourceSans
  130. Desc.Text = "Sadly You may not set power"
  131. Desc.TextColor3 = Color3.new(1, 1, 1)
  132. Desc.TextSize = 14
  133.  
  134. Desc_2.Name = "Desc"
  135. Desc_2.Parent = main
  136. Desc_2.BackgroundColor3 = Color3.new(1, 1, 1)
  137. Desc_2.BackgroundTransparency = 1
  138. Desc_2.Position = UDim2.new(0, 0, 0.865168571, 0)
  139. Desc_2.Size = UDim2.new(0, 206, 0, 31)
  140. Desc_2.Font = Enum.Font.SourceSans
  141. Desc_2.Text = "But this version is working"
  142. Desc_2.TextColor3 = Color3.new(1, 1, 1)
  143. Desc_2.TextSize = 14
  144.  
  145. frame.Name = "frame"
  146. frame.Parent = FEFling
  147. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  148. frame.BorderColor3 = Color3.new(1, 1, 1)
  149. frame.Position = UDim2.new(0.00392927323, 0, 0.484029502, 0)
  150. frame.Size = UDim2.new(0, 122, 0, 60)
  151.  
  152. open.Name = "open"
  153. open.Parent = frame
  154. open.BackgroundColor3 = Color3.new(1, 1, 1)
  155. open.BackgroundTransparency = 1
  156. open.Position = UDim2.new(0.0573770478, 0, 0.0833333358, 0)
  157. open.Size = UDim2.new(0, 106, 0, 50)
  158. open.Font = Enum.Font.SourceSans
  159. open.Text = "Open FE fling GUI"
  160. open.TextColor3 = Color3.new(1, 1, 1)
  161. open.TextSize = 14
  162. open.TextWrapped = true
  163. open.MouseButton1Down:connect(function()
  164. main.Visible = true
  165. open.Visible = false
  166. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement