ForumsHacksGG

FE2 HAX

Nov 19th, 2020
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -- Gui Made By Forums#0666
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Frame = Instance.new("Frame")
  9. local INFJUMP = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = ScreenGui
  18. main.Active = true
  19. main.BackgroundColor3 = Color3.fromRGB(120, 2, 2)
  20. main.BorderSizePixel = 0
  21. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  22. main.Size = UDim2.new(0, 146, 0, 28)
  23. main.Active = true
  24. main.Draggable = false
  25.  
  26. TextLabel.Parent = main
  27. TextLabel.BackgroundColor3 = Color3.fromRGB(120, 2, 2)
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  30. TextLabel.Font = Enum.Font.SciFi
  31. TextLabel.Text = "FE2 Hax"
  32. TextLabel.TextColor3 = Color3.fromRGB(255, 0, 255)
  33. TextLabel.TextSize = 17.000
  34. TextLabel.TextWrapped = true
  35.  
  36. Frame.Parent = main
  37. Frame.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
  38. Frame.BorderSizePixel = 0
  39. Frame.Position = UDim2.new(0, 0, 1, 0)
  40. Frame.Size = UDim2.new(0, 146, 0, 61)
  41.  
  42. INFJUMP.Name = "INFJUMP"
  43. INFJUMP.Parent = main
  44. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  45. INFJUMP.BorderSizePixel = 0
  46. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  47. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  48. INFJUMP.Font = Enum.Font.SourceSans
  49. INFJUMP.Text = ""
  50. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. INFJUMP.TextSize = 14.000
  52. INFJUMP.MouseButton1Down:connect(function()
  53. local Player = game:GetService'Players'.LocalPlayer;
  54. local UIS = game:GetService'UserInputService';
  55.  
  56. _G.JumpHeight = 50;
  57.  
  58. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  59.  
  60. UIS.InputBegan:connect(function(UserInput)
  61. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  62. Action(Player.Character.Humanoid, function(self)
  63. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  64. Action(self.Parent.HumanoidRootPart, function(self)
  65. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  66. end)
  67. end
  68. end)
  69. end
  70. end)
  71. end)
  72.  
  73. TextLabel_2.Parent = main
  74. TextLabel_2.BackgroundColor3 = Color3.fromRGB(120, 2, 2)
  75. TextLabel_2.BorderSizePixel = 0
  76. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  77. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  78. TextLabel_2.Font = Enum.Font.SciFi
  79. TextLabel_2.Text = "Infinite jump"
  80. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  81. TextLabel_2.TextSize = 17.000
  82. TextLabel_2.TextWrapped = true
  83.  
  84. -- Scripts:
  85.  
  86. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  87. local script = Instance.new('LocalScript', INFJUMP)
  88.  
  89. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  90.  
  91. counter = 0
  92.  
  93. while wait(0.1)do
  94. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  95.  
  96. counter = counter + 0.01
  97. end
  98. end
  99. coroutine.wrap(TKDWQ_fake_script)()
Add Comment
Please, Sign In to add comment