Advertisement
Guest User

FE FLING GUI ROBLOX

a guest
Mar 28th, 2019
42,113
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 1
  1. -- Farewell Infortality.
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local FEFLINGGUI = Instance.new("TextLabel")
  5. local flung = Instance.new("TextButton")
  6. local fling = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.CoreGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  14. Frame.BorderColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  15. Frame.Position = UDim2.new(0.0214067288, 0, 0.525050044, 0)
  16. Frame.Size = UDim2.new(0, 198, 0, 184)
  17. Frame.Active = true
  18. Frame.Draggable = true
  19.  
  20. FEFLINGGUI.Name = "FE FLING GUI"
  21. FEFLINGGUI.Parent = Frame
  22. FEFLINGGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  23. FEFLINGGUI.BackgroundTransparency = 0.80000001192093
  24. FEFLINGGUI.BorderColor3 = Color3.new(0, 0, 0)
  25. FEFLINGGUI.Position = UDim2.new(0, 0, -0.00218913867, 0)
  26. FEFLINGGUI.Size = UDim2.new(0, 197, 0, 32)
  27. FEFLINGGUI.Font = Enum.Font.SourceSans
  28. FEFLINGGUI.Text = "FE FLING GUI"
  29. FEFLINGGUI.TextColor3 = Color3.new(1, 1, 1)
  30. FEFLINGGUI.TextSize = 14
  31. FEFLINGGUI.TextWrapped = true
  32.  
  33. flung.Name = "flung"
  34. flung.Parent = Frame
  35. flung.BackgroundColor3 = Color3.new(0, 0, 0)
  36. flung.BackgroundTransparency = 0.80000001192093
  37. flung.BorderColor3 = Color3.new(0, 0, 0)
  38. flung.Position = UDim2.new(0.145908609, 0, 0.563463926, 0)
  39. flung.Size = UDim2.new(0, 140, 0, 31)
  40. flung.Font = Enum.Font.SourceSans
  41. flung.Text = "Fling R15"
  42. flung.TextColor3 = Color3.new(1, 1, 1)
  43. flung.TextSize = 14
  44. flung.MouseButton1Click:connect(function()
  45. power = 1000 -- change this to make it more or less powerful
  46.  
  47. game:GetService('RunService').Stepped:connect(function()
  48. game.Players.LocalPlayer.Character.Head.CanCollide = false
  49. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  50. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  51. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  52. end)
  53. wait(.1)
  54. local bambam = Instance.new("BodyThrust")
  55. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  56. bambam.Force = Vector3.new(power,0,power)
  57. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  58.  
  59. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  60. end)
  61.  
  62. fling.Name = "fling"
  63. fling.Parent = Frame
  64. fling.BackgroundColor3 = Color3.new(0, 0, 0)
  65. fling.BackgroundTransparency = 0.80000001192093
  66. fling.BorderColor3 = Color3.new(0, 0, 0)
  67. fling.Position = UDim2.new(0.140858114, 0, 0.280648321, 0)
  68. fling.Size = UDim2.new(0, 140, 0, 31)
  69. fling.Font = Enum.Font.SourceSans
  70. fling.Text = "Fling R6"
  71. fling.TextColor3 = Color3.new(1, 1, 1)
  72. fling.TextSize = 14
  73. fling.MouseButton1Click:connect(function()
  74. power = 1000 -- change this to make it more or less powerful
  75.  
  76. game:GetService('RunService').Stepped:connect(function()
  77. game.Players.LocalPlayer.Character.Head.CanCollide = false
  78. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  79. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  80. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  81. end)
  82.  
  83. wait(.1)
  84. local bambam = Instance.new("BodyThrust")
  85. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  86. bambam.Force = Vector3.new(power,0,power)
  87. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  88.  
  89. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  90. end)
  91.  
  92. close.Name = "close"
  93. close.Parent = Frame
  94. close.BackgroundColor3 = Color3.new(0, 0, 0)
  95. close.BackgroundTransparency = 0.89999997615814
  96. close.BorderColor3 = Color3.new(0, 0, 0)
  97. close.Position = UDim2.new(0.787322819, 0, -0.00196042238, 0)
  98. close.Size = UDim2.new(0, 41, 0, 31)
  99. close.Font = Enum.Font.SourceSans
  100. close.Text = "X"
  101. close.TextColor3 = Color3.new(1, 1, 1)
  102. close.TextSize = 14
  103. close.MouseButton1Click:connect(function()
  104. Frame.Visible = false
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement