Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.08 KB | None | 0 0
  1. --Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local SAB = Instance.new("Frame")
  4. local TITLE = Instance.new("TextLabel")
  5. local S = Instance.new("TextButton")
  6. local J = Instance.new("TextButton")
  7. local TITLE_2 = Instance.new("TextLabel")
  8. local F = Instance.new("TextButton")
  9. local CS = Instance.new("TextButton")
  10. local TITLE_3 = Instance.new("TextLabel")
  11. local TextLabel = Instance.new("TextLabel")
  12. --Properties:
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. SAB.Name = "SAB"
  17. SAB.Parent = ScreenGui
  18. SAB.BackgroundColor3 = Color3.new(1, 1, 1)
  19. SAB.Position = UDim2.new(0.745019913, 0, 0.210073709, 0)
  20. SAB.Size = UDim2.new(0, 301, 0, 519)
  21. SAB.Style = Enum.FrameStyle.RobloxRound
  22.  
  23. TITLE.Name = "TITLE"
  24. TITLE.Parent = SAB
  25. TITLE.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  26. TITLE.BorderSizePixel = 0
  27. TITLE.Position = UDim2.new(-0.0273186062, 0, -0.0489589572, 0)
  28. TITLE.Size = UDim2.new(0, 301, 0, 31)
  29. TITLE.Font = Enum.Font.GothamBold
  30. TITLE.Text = "Simulators Are Bad"
  31. TITLE.TextColor3 = Color3.new(1, 1, 1)
  32. TITLE.TextScaled = true
  33. TITLE.TextSize = 14
  34. TITLE.TextStrokeTransparency = 0
  35. TITLE.TextWrapped = true
  36.  
  37. S.Name = "S"
  38. S.Parent = SAB
  39. S.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  40. S.Position = UDim2.new(0.0222692043, 0, 0.0122916298, 0)
  41. S.Size = UDim2.new(0, 115, 0, 45)
  42. S.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  43. S.Font = Enum.Font.SourceSans
  44. S.Text = "Speed"
  45. S.TextColor3 = Color3.new(0, 0, 0)
  46. S.TextSize = 14
  47. S.MouseButton1Down:connect(function()
  48. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150 -- Feel free to change this.
  49. end)
  50.  
  51. J.Name = "J"
  52. J.Parent = SAB
  53. J.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  54. J.Position = UDim2.new(0.0222692005, 0, 0.105914325, 0)
  55. J.Size = UDim2.new(0, 115, 0, 45)
  56. J.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  57. J.Font = Enum.Font.SourceSans
  58. J.Text = "Jump Power"
  59. J.TextColor3 = Color3.new(0, 0, 0)
  60. J.TextSize = 14
  61. J.MouseButton1Down:connect(function()
  62. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150 -- Again, feel free to change this.
  63. end)
  64.  
  65. TITLE_2.Name = "TITLE"
  66. TITLE_2.Parent = SAB
  67. TITLE_2.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  68. TITLE_2.BorderSizePixel = 0
  69. TITLE_2.Position = UDim2.new(-0.0294225942, 0, 0.989022553, 0)
  70. TITLE_2.Size = UDim2.new(0, 301, 0, 31)
  71. TITLE_2.Font = Enum.Font.GothamBold
  72. TITLE_2.Text = "I am very bad at making exploits so any suggestions / help will be taken at pigeon#0002"
  73. TITLE_2.TextColor3 = Color3.new(1, 1, 1)
  74. TITLE_2.TextScaled = true
  75. TITLE_2.TextSize = 14
  76. TITLE_2.TextStrokeTransparency = 0
  77. TITLE_2.TextWrapped = true
  78.  
  79. F.Name = "F"
  80. F.Parent = SAB
  81. F.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  82. F.Position = UDim2.new(0.567119658, 0, 0.0122916289, 0)
  83. F.Size = UDim2.new(0, 115, 0, 45)
  84. F.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  85. F.Font = Enum.Font.SourceSans
  86. F.Text = "Fly"
  87. F.TextColor3 = Color3.new(0, 0, 0)
  88. F.TextSize = 14
  89. F.MouseButton1Down:connect(function()
  90. -- //~ F to toggle ~\\ --
  91.  
  92. _G.infinjump = true
  93.  
  94. local Player = game:GetService("Players").LocalPlayer
  95. local Mouse = Player:GetMouse()
  96. Mouse.KeyDown:connect(function(k)
  97. if _G.infinjump then
  98. if k:byte() == 32 then
  99. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  100. Humanoid:ChangeState("Jumping")
  101. wait(0.1)
  102. Humanoid:ChangeState("Seated")
  103. end
  104. end
  105. end)
  106.  
  107. local Player = game:GetService("Players").LocalPlayer
  108. local Mouse = Player:GetMouse()
  109. Mouse.KeyDown:connect(function(k)
  110. k = k:lower()
  111. if k == "f" then
  112. if _G.infinjump == true then
  113. _G.infinjump = false
  114. else
  115. _G.infinjump = true
  116. end
  117. end
  118. end)
  119. end)
  120.  
  121. CS.Name = "CS"
  122. CS.Parent = SAB
  123. CS.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  124. CS.Position = UDim2.new(0.567119658, 0, 0.105914325, 0)
  125. CS.Size = UDim2.new(0, 115, 0, 45)
  126. CS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  127. CS.Font = Enum.Font.SourceSans
  128. CS.Text = "Coming Soon"
  129. CS.TextColor3 = Color3.new(0, 0, 0)
  130. CS.TextSize = 14
  131.  
  132. TITLE_3.Name = "TITLE"
  133. TITLE_3.Parent = SAB
  134. TITLE_3.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  135. TITLE_3.BorderSizePixel = 0
  136. TITLE_3.Position = UDim2.new(-0.0294225942, 0, 0.218309641, 0)
  137. TITLE_3.Size = UDim2.new(0, 301, 0, 31)
  138. TITLE_3.Font = Enum.Font.GothamBold
  139. TITLE_3.Text = "GUI's for specific simulators will appear underneath this, when you have loaded one of the SAB series' GUI's"
  140. TITLE_3.TextColor3 = Color3.new(1, 1, 1)
  141. TITLE_3.TextScaled = true
  142. TITLE_3.TextSize = 14
  143. TITLE_3.TextStrokeTransparency = 0
  144. TITLE_3.TextWrapped = true
  145.  
  146. TextLabel.Parent = SAB
  147. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  148. TextLabel.BackgroundTransparency = 1
  149. TextLabel.Position = UDim2.new(-0.00850842148, 0, 0.279811502, 0)
  150. TextLabel.Size = UDim2.new(0, 290, 0, 353)
  151. TextLabel.Font = Enum.Font.SourceSans
  152. TextLabel.Text = "LOAD HERE"
  153. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  154. TextLabel.TextScaled = true
  155. TextLabel.TextSize = 14
  156. TextLabel.TextWrapped = true
  157. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement