Advertisement
Guest User

Bypasser FE

a guest
Nov 18th, 2019
1,456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Execute = Instance.new("TextButton")
  9. local Clear = Instance.new("TextButton")
  10. local TextBox = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TextButton = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  20. Frame.Position = UDim2.new(0.0641025677, 0, 0.0239043832, 0)
  21. Frame.Size = UDim2.new(0, 462, 0, 260)
  22. Frame.Active = true
  23. Frame.Draggable = true
  24.  
  25. Execute.Name = "Execute"
  26. Execute.Parent = Frame
  27. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  28. Execute.Position = UDim2.new(0.0303030275, 0, 0.75, 0)
  29. Execute.Size = UDim2.new(0, 200, 0, 50)
  30. Execute.Font = Enum.Font.SourceSans
  31. Execute.Text = "Execute"
  32. Execute.TextColor3 = Color3.new(0, 0, 0)
  33. Execute.TextSize = 14
  34.  
  35. Clear.Name = "Clear"
  36. Clear.Parent = Frame
  37. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  38. Clear.Position = UDim2.new(0.545454502, 0, 0.75, 0)
  39. Clear.Size = UDim2.new(0, 200, 0, 50)
  40. Clear.Font = Enum.Font.SourceSans
  41. Clear.Text = "Clear"
  42. Clear.TextColor3 = Color3.new(0, 0, 0)
  43. Clear.TextSize = 14
  44.  
  45. TextBox.Parent = Frame
  46. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  47. TextBox.Position = UDim2.new(0.0519480519, 0, 0.138461545, 0)
  48. TextBox.Size = UDim2.new(0, 414, 0, 139)
  49. TextBox.Font = Enum.Font.SourceSans
  50. TextBox.Text = ""
  51. TextBox.TextColor3 = Color3.new(0, 0, 0)
  52. TextBox.TextSize = 14
  53.  
  54. TextLabel.Parent = Frame
  55. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  56. TextLabel.Position = UDim2.new(0.24242425, 0, 0, 0)
  57. TextLabel.Size = UDim2.new(0, 238, 0, 27)
  58. TextLabel.Font = Enum.Font.SourceSans
  59. TextLabel.Text = "FE Bypasser"
  60. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  61. TextLabel.TextSize = 14
  62.  
  63. TextButton.Parent = Frame
  64. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  65. TextButton.Position = UDim2.new(1.16450214, -100, 0, 0)
  66. TextButton.Size = UDim2.new(0, 24, 0, 27)
  67. TextButton.Font = Enum.Font.SourceSans
  68. TextButton.Text = "X"
  69. TextButton.TextColor3 = Color3.new(0, 0, 0)
  70. TextButton.TextSize = 14
  71.  
  72. -- Scripts:
  73.  
  74. local function LRLO_fake_script() -- TextButton.Script
  75. local script = Instance.new('Script', TextButton)
  76.  
  77. button = script.Parent
  78. window = button.Parent
  79.  
  80. function onClicked(GUI)
  81. window:remove()
  82. end
  83. script.Parent.MouseButton1Click:connect(onClicked)
  84. end
  85. coroutine.wrap(LRLO_fake_script)()
  86.  
  87. Execute.MouseButton1Click:Connect(function()
  88. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  89. end)
  90.  
  91. Clear.MouseButton1Click:Connect(function()
  92. TextBox.Text = ""
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement