Jxjxjx1

Fly & Walkspeed script gui

Mar 17th, 2022 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.26 KB | None | 0 0
  1. -- new fly/walkspeed gui
  2. -- Made by Nyaha Gaming
  3. -- Instances:
  4.  
  5. game.StarterGui:SetCore("SendNotification", {
  6. Title = "subscribe To Nyaha Gaming";
  7. Text = "Executed.!";
  8. })
  9.  
  10. local ScreenGui = Instance.new("ScreenGui")
  11. local Main = Instance.new("Frame")
  12. local Title = Instance.new("TextLabel")
  13. local Fly = Instance.new("TextButton")
  14. local walkspeed = Instance.new("TextButton")
  15. local wsframe = Instance.new("Frame")
  16. local wsinput = Instance.new("TextBox")
  17. local setws = Instance.new("TextButton")
  18. local rews = Instance.new("TextButton")
  19. local wsclose = Instance.new("TextButton")
  20. local Close = Instance.new("TextButton")
  21. local Open = Instance.new("TextButton")
  22.  
  23. --Properties:
  24.  
  25. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  26. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27.  
  28. Main.Name = "Main"
  29. Main.Parent = ScreenGui
  30. Main.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  31. Main.BorderSizePixel = 0
  32. Main.Position = UDim2.new(0.14777948, 0, 0.194278911, 0)
  33. Main.Size = UDim2.new(0, 360, 0, 413)
  34.  
  35. Title.Name = "Title"
  36. Title.Parent = Main
  37. Title.BackgroundColor3 = Color3.fromRGB(226, 151, 226)
  38. Title.BorderSizePixel = 0
  39. Title.Size = UDim2.new(0, 360, 0, 50)
  40. Title.Font = Enum.Font.SourceSans
  41. Title.Text = "Made By Nyaha Gaming"
  42. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. Title.TextScaled = true
  44. Title.TextSize = 14.000
  45. Title.TextStrokeTransparency = 0.000
  46. Title.TextWrapped = true
  47.  
  48. Fly.Name = "Fly"
  49. Fly.Parent = Main
  50. Fly.BackgroundColor3 = Color3.fromRGB(255, 119, 242)
  51. Fly.BorderSizePixel = 0
  52. Fly.Position = UDim2.new(0.0472222194, 0, 0.198731437, 0)
  53. Fly.Size = UDim2.new(0, 153, 0, 55)
  54. Fly.Font = Enum.Font.SourceSans
  55. Fly.Text = "Fly"
  56. Fly.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. Fly.TextScaled = true
  58. Fly.TextSize = 14.000
  59. Fly.TextStrokeTransparency = 0.000
  60. Fly.TextWrapped = true
  61. Fly.MouseButton1Down:connect(function()
  62. loadstring(game:HttpGet("https://pastebin.com/raw/9tZMx4SW"))()
  63. end)
  64.  
  65. walkspeed.Name = "walkspeed"
  66. walkspeed.Parent = Main
  67. walkspeed.BackgroundColor3 = Color3.fromRGB(255, 119, 242)
  68. walkspeed.BorderSizePixel = 0
  69. walkspeed.Position = UDim2.new(0.508333325, 0, 0.198731437, 0)
  70. walkspeed.Size = UDim2.new(0, 153, 0, 55)
  71. walkspeed.Font = Enum.Font.SourceSans
  72. walkspeed.Text = "Set Speed"
  73. walkspeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. walkspeed.TextScaled = true
  75. walkspeed.TextSize = 14.000
  76. walkspeed.TextStrokeTransparency = 0.000
  77. walkspeed.TextWrapped = true
  78. walkspeed.MouseButton1Click:Connect(function()
  79. wsframe.Visible = true
  80. Fly.Visible = false
  81. end)
  82.  
  83. wsframe.Name = "wsframe"
  84. wsframe.Parent = walkspeed
  85. wsframe.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  86. wsframe.BorderSizePixel = 0
  87. wsframe.Position = UDim2.new(-1.19607842, 0, -0.583201468, 0)
  88. wsframe.Size = UDim2.new(0, 360, 0, 362)
  89. wsframe.Visible = false
  90.  
  91. wsinput.Name = "wsinput"
  92. wsinput.Parent = wsframe
  93. wsinput.BackgroundColor3 = Color3.fromRGB(231, 154, 231)
  94. wsinput.BorderSizePixel = 0
  95. wsinput.Position = UDim2.new(0.163888887, 0, 0.0883977935, 0)
  96. wsinput.Size = UDim2.new(0, 241, 0, 63)
  97. wsinput.Font = Enum.Font.SourceSans
  98. wsinput.Text = "Speed Value"
  99. wsinput.TextColor3 = Color3.fromRGB(255, 255, 255)
  100. wsinput.TextScaled = true
  101. wsinput.TextSize = 14.000
  102. wsinput.TextStrokeTransparency = 0.000
  103. wsinput.TextWrapped = true
  104. wsclose.MouseButton1Click:Connect(function()
  105. wsframe.Visible = false
  106. Fly.Visible = true
  107. end)
  108.  
  109. setws.Name = "setws"
  110. setws.Parent = wsframe
  111. setws.BackgroundColor3 = Color3.fromRGB(221, 147, 221)
  112. setws.BorderSizePixel = 0
  113. setws.Position = UDim2.new(0.0472222231, 0, 0.331491709, 0)
  114. setws.Size = UDim2.new(0, 143, 0, 51)
  115. setws.Font = Enum.Font.SourceSans
  116. setws.Text = "Set Walk Speed"
  117. setws.TextColor3 = Color3.fromRGB(255, 255, 255)
  118. setws.TextScaled = true
  119. setws.TextSize = 14.000
  120. setws.TextStrokeTransparency = 0.000
  121. setws.TextWrapped = true
  122. setws.MouseButton1Click:Connect(function()
  123. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = wsinput.Text
  124. end)
  125.  
  126. rews.Name = "rews"
  127. rews.Parent = wsframe
  128. rews.BackgroundColor3 = Color3.fromRGB(221, 147, 221)
  129. rews.BorderSizePixel = 0
  130. rews.Position = UDim2.new(0.508333325, 0, 0.331491709, 0)
  131. rews.Size = UDim2.new(0, 153, 0, 51)
  132. rews.Font = Enum.Font.SourceSans
  133. rews.Text = "Reset Walk Speed"
  134. rews.TextColor3 = Color3.fromRGB(255, 255, 255)
  135. rews.TextScaled = true
  136. rews.TextSize = 14.000
  137. rews.TextStrokeTransparency = 0.000
  138. rews.TextWrapped = true
  139. rews.MouseButton1Click:Connect(function()
  140. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  141. end)
  142.  
  143. wsclose.Name = "wsclose"
  144. wsclose.Parent = wsframe
  145. wsclose.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  146. wsclose.BorderSizePixel = 0
  147. wsclose.Position = UDim2.new(0.891666651, 0, 0, 0)
  148. wsclose.Size = UDim2.new(0, 39, 0, 39)
  149. wsclose.Font = Enum.Font.SourceSans
  150. wsclose.Text = "X"
  151. wsclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  152. wsclose.TextScaled = true
  153. wsclose.TextSize = 14.000
  154. wsclose.TextStrokeTransparency = 0.500
  155. wsclose.TextWrapped = true
  156.  
  157. Close.Name = "Close"
  158. Close.Parent = Main
  159. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  160. Close.BorderSizePixel = 0
  161. Close.Position = UDim2.new(0.891666651, 0, 0, 0)
  162. Close.Size = UDim2.new(0, 39, 0, 39)
  163. Close.Font = Enum.Font.SourceSans
  164. Close.Text = "X"
  165. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  166. Close.TextScaled = true
  167. Close.TextSize = 14.000
  168. Close.TextStrokeTransparency = 0.500
  169. Close.TextWrapped = true
  170. Close.MouseButton1Click:Connect(function()
  171. Main.Visible = false
  172. Open.Visible = true
  173. end)
  174.  
  175. Open.Name = "Open"
  176. Open.Parent = ScreenGui
  177. Open.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  178. Open.BorderSizePixel = 0
  179. Open.Position = UDim2.new(0, 0, 0.566150188, 0)
  180. Open.Size = UDim2.new(0, 92, 0, 22)
  181. Open.Font = Enum.Font.SourceSans
  182. Open.Text = "Open"
  183. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  184. Open.TextScaled = true
  185. Open.TextSize = 14.000
  186. Open.TextStrokeTransparency = 0.500
  187. Open.TextWrapped = true
  188. Open.MouseButton1Click:Connect(function()
  189. Main.Visible = true
  190. Open.Visible = false
  191. end)
  192.  
  193. -- Scripts:
  194.  
  195. local function NLNLEP_fake_script() -- ScreenGui.Script
  196. local script = Instance.new('Script', ScreenGui)
  197.  
  198. frame = script.Parent.Main -- Take out {}s, and put name of frame
  199. frame.Draggable = true
  200. frame.Active = true
  201. frame.Selectable = true
  202. end
  203. coroutine.wrap(NLNLEP_fake_script)()
  204.  
Add Comment
Please, Sign In to add comment