Page 2

DATA HOSTED WITH ♥ BY PASTEBIN.COM - DOWNLOAD RAW - SEE ORIGINAL

  1. -- new fly/walkspeed gui

  2. -- Made by 6uz

  3. -- Instances:

  4. local ScreenGui = Instance.new("ScreenGui")

  5. local Main = Instance.new("Frame")

  6. local Title = Instance.new("TextLabel")

  7. local Fly = Instance.new("TextButton")

  8. local walkspeed = Instance.new("TextButton")

  9. local wsframe = Instance.new("Frame")

  10. local wsinput = Instance.new("TextBox")

  11. local setws = Instance.new("TextButton")

  12. local rews = Instance.new("TextButton")

  13. local wsclose = Instance.new("TextButton")

  14. local Close = Instance.new("TextButton")

  15. local Open = Instance.new("TextButton")

  16. --Properties:

  17. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  18. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling

  19. Main.Name = "Main"

  20. Main.Parent = ScreenGui

  21. Main.BackgroundColor3 = Color3.fromRGB(255, 170, 255)

  22. Main.BorderSizePixel = 0

  23. Main.Position = UDim2.new(0.14777948, 0, 0.194278911, 0)

  24. Main.Size = UDim2.new(0, 360, 0, 413)

  25. Title.Name = "Title"

  26. Title.Parent = Main

  27. Title.BackgroundColor3 = Color3.fromRGB(226, 151, 226)

  28. Title.BorderSizePixel = 0

  29. Title.Size = UDim2.new(0, 360, 0, 50)

  30. Title.Font = Enum.Font.SourceSans

  31. Title.Text = "6uz's Gui"

  32. Title.TextColor3 = Color3.fromRGB(255, 255, 255)

  33. Title.TextScaled = true

  34. Title.TextSize = 14.000

  35. Title.TextStrokeTransparency = 0.000

  36. Title.TextWrapped = true

  37. Fly.Name = "Fly"

  38. Fly.Parent = Main

  39. Fly.BackgroundColor3 = Color3.fromRGB(255, 119, 242)

  40. Fly.BorderSizePixel = 0

  41. Fly.Position = UDim2.new(0.0472222194, 0, 0.198731437, 0)

  42. Fly.Size = UDim2.new(0, 153, 0, 55)

  43. Fly.Font = Enum.Font.SourceSans

  44. Fly.Text = "Fly"

  45. Fly.TextColor3 = Color3.fromRGB(255, 255, 255)

  46. Fly.TextScaled = true

  47. Fly.TextSize = 14.000

  48. Fly.TextStrokeTransparency = 0.000

  49. Fly.TextWrapped = true

  50. Fly.MouseButton1Down:connect(function()

  51. loadstring(game:HttpGet("https://pastebin.com/raw/9tZMx4SW"))()

  52. end)

  53. walkspeed.Name = "walkspeed"

  54. walkspeed.Parent = Main

  55. walkspeed.BackgroundColor3 = Color3.fromRGB(255, 119, 242)

  56. walkspeed.BorderSizePixel = 0

  57. walkspeed.Position = UDim2.new(0.508333325, 0, 0.198731437, 0)

  58. walkspeed.Size = UDim2.new(0, 153, 0, 55)

  59. walkspeed.Font = Enum.Font.SourceSans

  60. walkspeed.Text = "Set Speed"

  61. walkspeed.TextColor3 = Color3.fromRGB(255, 255, 255)

  62. walkspeed.TextScaled = true

  63. walkspeed.TextSize = 14.000

  64. walkspeed.TextStrokeTransparency = 0.000

  65. walkspeed.TextWrapped = true

  66. walkspeed.MouseButton1Click:Connect(function()

  67. wsframe.Visible = true

  68. Fly.Visible = false

  69. end)

  70. wsframe.Name = "wsframe"

  71. wsframe.Parent = walkspeed

  72. wsframe.BackgroundColor3 = Color3.fromRGB(255, 170, 255)

  73. wsframe.BorderSizePixel = 0

  74. wsframe.Position = UDim2.new(-1.19607842, 0, -0.583201468, 0)

  75. wsframe.Size = UDim2.new(0, 360, 0, 362)

  76. wsframe.Visible = false

  77. wsinput.Name = "wsinput"

  78. wsinput.Parent = wsframe

  79. wsinput.BackgroundColor3 = Color3.fromRGB(231, 154, 231)

  80. wsinput.BorderSizePixel = 0

  81. wsinput.Position = UDim2.new(0.163888887, 0, 0.0883977935, 0)

  82. wsinput.Size = UDim2.new(0, 241, 0, 63)

  83. wsinput.Font = Enum.Font.SourceSans

  84. wsinput.Text = "Speed Value"

  85. wsinput.TextColor3 = Color3.fromRGB(255, 255, 255)

  86. wsinput.TextScaled = true

  87. wsinput.TextSize = 14.000

  88. wsinput.TextStrokeTransparency = 0.000

  89. wsinput.TextWrapped = true

  90. wsclose.MouseButton1Click:Connect(function()

  91. wsframe.Visible = false

  92. Fly.Visible = true

  93. end)

  94. setws.Name = "setws"

  95. setws.Parent = wsframe

  96. setws.BackgroundColor3 = Color3.fromRGB(221, 147, 221)

  97. setws.BorderSizePixel = 0

  98. setws.Position = UDim2.new(0.0472222231, 0, 0.331491709, 0)

  99. setws.Size = UDim2.new(0, 143, 0, 51)

  100. setws.Font = Enum.Font.SourceSans

  101. setws.Text = "Set Walk Speed"

  102. setws.TextColor3 = Color3.fromRGB(255, 255, 255)

  103. setws.TextScaled = true

  104. setws.TextSize = 14.000

  105. setws.TextStrokeTransparency = 0.000

  106. setws.TextWrapped = true

  107. setws.MouseButton1Click:Connect(function()

  108. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = wsinput.Text

  109. end)

  110. rews.Name = "rews"

  111. rews.Parent = wsframe

  112. rews.BackgroundColor3 = Color3.fromRGB(221, 147, 221)

  113. rews.BorderSizePixel = 0

  114. rews.Position = UDim2.new(0.508333325, 0, 0.331491709, 0)

  115. rews.Size = UDim2.new(0, 153, 0, 51)

  116. rews.Font = Enum.Font.SourceSans

  117. rews.Text = "Reset Walk Speed"

  118. rews.TextColor3 = Color3.fromRGB(255, 255, 255)

  119. rews.TextScaled = true

  120. rews.TextSize = 14.000

  121. rews.TextStrokeTransparency = 0.000

  122. rews.TextWrapped = true

  123. rews.MouseButton1Click:Connect(function()

  124. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16

  125. end)

  126. wsclose.Name = "wsclose"

  127. wsclose.Parent = wsframe

  128. wsclose.BackgroundColor3 = Color3.fromRGB(255, 0, 0)

  129. wsclose.BorderSizePixel = 0

  130. wsclose.Position = UDim2.new(0.891666651, 0, 0, 0)

  131. wsclose.Size = UDim2.new(0, 39, 0, 39)

  132. wsclose.Font = Enum.Font.SourceSans

  133. wsclose.Text = "X"

  134. wsclose.TextColor3 = Color3.fromRGB(255, 255, 255)

  135. wsclose.TextScaled = true

  136. wsclose.TextSize = 14.000

  137. wsclose.TextStrokeTransparency = 0.500

  138. wsclose.TextWrapped = true

  139. Close.Name = "Close"

  140. Close.Parent = Main

  141. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)

  142. Close.BorderSizePixel = 0

  143. Close.Position = UDim2.new(0.891666651, 0, 0, 0)

  144. Close.Size = UDim2.new(0, 39, 0, 39)

  145. Close.Font = Enum.Font.SourceSans

  146. Close.Text = "X"

  147. Close.TextColor3 = Color3.fromRGB(255, 255, 255)

  148. Close.TextScaled = true

  149. Close.TextSize = 14.000

  150. Close.TextStrokeTransparency = 0.500

  151. Close.TextWrapped = true

  152. Close.MouseButton1Click:Connect(function()

  153. Main.Visible = false

  154. Open.Visible = true

  155. end)

  156. Open.Name = "Open"

  157. Open.Parent = ScreenGui

  158. Open.BackgroundColor3 = Color3.fromRGB(255, 170, 255)

  159. Open.BorderSizePixel = 0

  160. Open.Position = UDim2.new(0, 0, 0.566150188, 0)

  161. Open.Size = UDim2.new(0, 92, 0, 22)

  162. Open.Font = Enum.Font.SourceSans

  163. Open.Text = "Open"

  164. Open.TextColor3 = Color3.fromRGB(255, 255, 255)

  165. Open.TextScaled = true

  166. Open.TextSize = 14.000

  167. Open.TextStrokeTransparency = 0.500

  168. Open.TextWrapped = true

  169. Open.MouseButton1Click:Connect(function()

  170. Main.Visible = true

  171. Open.Visible = false

  172. end)

  173. -- Scripts:

  174. local function NLNLEP_fake_script() -- ScreenGui.Script

  175. local script = Instance.new('Script', ScreenGui)

  176. frame = script.Parent.Main -- Take out {}s, and put name of frame

  177. frame.Draggable = true

  178. frame.Active = true

  179. frame.Selectable = true

  180. end

  181. coroutine.wrap(NLNLEP_fake_script)()