Advertisement
NOLI10

BackFlip SImulator GUI (NEW)

Nov 9th, 2019
8,025
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local BackflipAutofarm = Instance.new("TextButton")
  9. local Rebirth = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.BackgroundColor3 = Color3.new(0, 1, 0)
  21. Main.BackgroundTransparency = 0.30000001192093
  22. Main.BorderSizePixel = 7
  23. Main.Position = UDim2.new(0.0302083343, 0, 0.0463392027, 0)
  24. Main.Size = UDim2.new(0, 767, 0, 430)
  25.  
  26. BackflipAutofarm.Name = "BackflipAutofarm"
  27. BackflipAutofarm.Parent = Main
  28. BackflipAutofarm.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  29. BackflipAutofarm.BackgroundTransparency = 0.30000001192093
  30. BackflipAutofarm.BorderSizePixel = 7
  31. BackflipAutofarm.Position = UDim2.new(0.239689857, 0, 0.186046526, 0)
  32. BackflipAutofarm.Size = UDim2.new(0, 398, 0, 50)
  33. BackflipAutofarm.Font = Enum.Font.GothamBold
  34. BackflipAutofarm.Text = "Backflip Autofarm (looped)"
  35. BackflipAutofarm.TextColor3 = Color3.new(1, 1, 1)
  36. BackflipAutofarm.TextSize = 30
  37. BackflipAutofarm.TextStrokeColor3 = Color3.new(0, 0.666667, 1)
  38. BackflipAutofarm.TextStrokeTransparency = 0.89999997615814
  39.  
  40. Rebirth.Name = "Rebirth"
  41. Rebirth.Parent = Main
  42. Rebirth.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  43. Rebirth.BackgroundTransparency = 0.30000001192093
  44. Rebirth.BorderSizePixel = 7
  45. Rebirth.Position = UDim2.new(0.239689857, 0, 0.383720934, 0)
  46. Rebirth.Size = UDim2.new(0, 398, 0, 50)
  47. Rebirth.Font = Enum.Font.GothamBold
  48. Rebirth.Text = "Fast Rebirth"
  49. Rebirth.TextColor3 = Color3.new(1, 1, 1)
  50. Rebirth.TextSize = 30
  51. Rebirth.TextStrokeColor3 = Color3.new(0, 0.666667, 1)
  52. Rebirth.TextStrokeTransparency = 0.89999997615814
  53.  
  54. TextLabel.Parent = Main
  55. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  56. TextLabel.BackgroundTransparency = 1
  57. TextLabel.BorderSizePixel = 0
  58. TextLabel.Position = UDim2.new(0.292236358, 0, -0.109165616, 0)
  59. TextLabel.Size = UDim2.new(0, 316, 0, 167)
  60. TextLabel.Font = Enum.Font.GothamBlack
  61. TextLabel.Text = "Backflip Simulator Haxx V1.0.0"
  62. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  63. TextLabel.TextSize = 36
  64. TextLabel.TextStrokeColor3 = Color3.new(0, 0.666667, 1)
  65. TextLabel.TextStrokeTransparency = 0.89999997615814
  66. TextLabel.TextWrapped = true
  67.  
  68. TextLabel_2.Parent = Main
  69. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  70. TextLabel_2.BackgroundTransparency = 1
  71. TextLabel_2.BorderSizePixel = 0
  72. TextLabel_2.Position = UDim2.new(0.108783752, 0, 0.56525296, 0)
  73. TextLabel_2.Size = UDim2.new(0, 646, 0, 67)
  74. TextLabel_2.Font = Enum.Font.GothamBlack
  75. TextLabel_2.Text = "Script creator discord: nope#6429"
  76. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  77. TextLabel_2.TextSize = 36
  78. TextLabel_2.TextStrokeColor3 = Color3.new(0, 0.666667, 1)
  79. TextLabel_2.TextStrokeTransparency = 0.89999997615814
  80. TextLabel_2.TextWrapped = true
  81.  
  82. -- Scripts:
  83.  
  84. local function ZBOAH_fake_script() -- BackflipAutofarm.LocalScript
  85. local script = Instance.new('LocalScript', BackflipAutofarm)
  86.  
  87. script.Parent.MouseButton1Click:Connect(function()
  88. while true do wait(0.0001)
  89. game.ReplicatedStorage.BackEvent:FireServer()
  90. end
  91. end)
  92. end
  93. coroutine.wrap(ZBOAH_fake_script)()
  94. local function KNPEEZQ_fake_script() -- Rebirth.LocalScript
  95. local script = Instance.new('LocalScript', Rebirth)
  96.  
  97. script.Parent.MouseButton1Click:Connect(function()
  98. while true do wait(0.01)
  99. game.ReplicatedStorage.RebirthEvent:FireServer()
  100. end
  101. end)
  102. end
  103. coroutine.wrap(KNPEEZQ_fake_script)()
  104. local function FFHBGRK_fake_script() -- ScreenGui.LocalScript
  105. local script = Instance.new('LocalScript', ScreenGui)
  106.  
  107. local frame = script.Parent.Main
  108. frame.Draggable = true
  109. frame.Active = true
  110. frame.Selectable = true
  111. end
  112. coroutine.wrap(FFHBGRK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement