Advertisement
thomas13215

Dawn GUI

Jan 3rd, 2019
1,397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.20 KB | None | 0 0
  1.  
  2.  
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local FEcheck = Instance.new("TextLabel")
  8. local Crdit = Instance.new("TextLabel")
  9. local desc = Instance.new("TextLabel")
  10. local fly = Instance.new("TextButton")
  11. local Noclip = Instance.new("TextButton")
  12. local FEkill = Instance.new("TextButton")
  13. local Walkspeed = Instance.new("TextButton")
  14. local Jump = Instance.new("TextButton")
  15. local Close = Instance.new("TextButton")
  16. --Properties:
  17. ScreenGui.Parent = game.Workspace
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.new(1, 1, 1)
  22. main.Position = UDim2.new(0.76673162, 0, 0.467279017, 0)
  23. main.Size = UDim2.new(0, 297, 0, 422)
  24. main.Style = Enum.FrameStyle.RobloxRound
  25.  
  26. Title.Name = "Title"
  27. Title.Parent = main
  28. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Title.BackgroundTransparency = 1
  30. Title.Position = UDim2.new(-0.00709528523, 0, -0.0333533995, 0)
  31. Title.Size = UDim2.new(0, 284, 0, 32)
  32. Title.Font = Enum.Font.SourceSans
  33. Title.Text = "Dawn GUI"
  34. Title.TextColor3 = Color3.new(1, 1, 1)
  35. Title.TextScaled = true
  36. Title.TextSize = 14
  37. Title.TextWrapped = true
  38.  
  39. FEcheck.Name = "FE check"
  40. FEcheck.Parent = main
  41. FEcheck.BackgroundColor3 = Color3.new(1, 1, 1)
  42. FEcheck.BackgroundTransparency = 1
  43. FEcheck.Position = UDim2.new(0.0214309432, 0, -0.0192162395, 0)
  44. FEcheck.Size = UDim2.new(0, 62, 0, 23)
  45. FEcheck.Font = Enum.Font.SourceSans
  46. FEcheck.Text = "FE enabled"
  47. FEcheck.TextColor3 = Color3.new(0, 1, 0)
  48. FEcheck.TextScaled = true
  49. FEcheck.TextSize = 14
  50. FEcheck.TextWrapped = true
  51.  
  52. Crdit.Name = "Crdit"
  53. Crdit.Parent = main
  54. Crdit.BackgroundColor3 = Color3.new(1, 1, 1)
  55. Crdit.BackgroundTransparency = 1
  56. Crdit.Position = UDim2.new(-0.00709528523, 0, 0.931101561, 0)
  57. Crdit.Size = UDim2.new(0, 284, 0, 32)
  58. Crdit.Font = Enum.Font.SourceSans
  59. Crdit.Text = "Fortress Master"
  60. Crdit.TextColor3 = Color3.new(1, 1, 1)
  61. Crdit.TextScaled = true
  62. Crdit.TextSize = 14
  63. Crdit.TextWrapped = true
  64.  
  65. desc.Name = "desc"
  66. desc.Parent = main
  67. desc.BackgroundColor3 = Color3.new(1, 1, 1)
  68. desc.BackgroundTransparency = 1
  69. desc.Position = UDim2.new(-0.00709528523, 0, 0.0638030022, 0)
  70. desc.Size = UDim2.new(0, 284, 0, 32)
  71. desc.Font = Enum.Font.SourceSans
  72. desc.Text = "ALL Scripts are FE"
  73. desc.TextColor3 = Color3.new(1, 1, 1)
  74. desc.TextScaled = true
  75. desc.TextSize = 14
  76. desc.TextWrapped = true
  77.  
  78. fly.Name = "fly"
  79. fly.Parent = main
  80. fly.BackgroundColor3 = Color3.new(1, 1, 1)
  81. fly.Position = UDim2.new(0.106463395, 0, 0.177150697, 0)
  82. fly.Size = UDim2.new(0, 221, 0, 39)
  83. fly.Style = Enum.ButtonStyle.RobloxRoundButton
  84. fly.Font = Enum.Font.SourceSans
  85. fly.Text = "Fly ( E to toggle)"
  86. fly.TextColor3 = Color3.new(0, 0, 0)
  87. fly.TextScaled = true
  88. fly.TextSize = 14
  89. fly.TextWrapped = true
  90. fly.MouseButton1Down:connect(function()
  91. repeat wait()
  92. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  93. local mouse = game.Players.LocalPlayer:GetMouse()
  94. repeat wait() until mouse
  95. local plr = game.Players.LocalPlayer
  96. local torso = plr.Character.Torso
  97. local flying = true
  98. local deb = true
  99. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  100. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  101. local maxspeed = 100
  102. local speed = 0
  103.  
  104. function Fly()
  105. local bg = Instance.new("BodyGyro", torso)
  106. bg.P = 9e4
  107. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  108. bg.cframe = torso.CFrame
  109. local bv = Instance.new("BodyVelocity", torso)
  110. bv.velocity = Vector3.new(0,0.1,0)
  111. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  112. repeat wait()
  113. plr.Character.Humanoid.PlatformStand = true
  114. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  115. speed = speed+.5+(speed/maxspeed)
  116. if speed > maxspeed then
  117. speed = maxspeed
  118. end
  119. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  120. speed = speed-1
  121. if speed < 0 then
  122. speed = 0
  123. end
  124. end
  125. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  126. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  127. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  128. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  129. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  130. else
  131. bv.velocity = Vector3.new(0,0.1,0)
  132. end
  133. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  134. until not flying
  135. ctrl = {f = 0, b = 0, l = 0, r = 0}
  136. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  137. speed = 0
  138. bg:Destroy()
  139. bv:Destroy()
  140. plr.Character.Humanoid.PlatformStand = false
  141. end
  142. mouse.KeyDown:connect(function(key)
  143. if key:lower() == "e" then
  144. if flying then flying = false
  145. else
  146. flying = true
  147. Fly()
  148. end
  149. elseif key:lower() == "w" then
  150. ctrl.f = 1
  151. elseif key:lower() == "s" then
  152. ctrl.b = -1
  153. elseif key:lower() == "a" then
  154. ctrl.l = -1
  155. elseif key:lower() == "d" then
  156. ctrl.r = 1
  157. end
  158. end)
  159. mouse.KeyUp:connect(function(key)
  160. if key:lower() == "w" then
  161. ctrl.f = 0
  162. elseif key:lower() == "s" then
  163. ctrl.b = 0
  164. elseif key:lower() == "a" then
  165. ctrl.l = 0
  166. elseif key:lower() == "d" then
  167. ctrl.r = 0
  168. end
  169. end)
  170. Fly()
  171. end)
  172.  
  173. Noclip.Name = "Noclip"
  174. Noclip.Parent = main
  175. Noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  176. Noclip.Position = UDim2.new(0.103096388, 0, 0.305112779, 0)
  177. Noclip.Size = UDim2.new(0, 221, 0, 39)
  178. Noclip.Style = Enum.ButtonStyle.RobloxRoundButton
  179. Noclip.Font = Enum.Font.SourceSans
  180. Noclip.Text = "Noclip"
  181. Noclip.TextColor3 = Color3.new(0, 0, 0)
  182. Noclip.TextScaled = true
  183. Noclip.TextSize = 14
  184. Noclip.TextWrapped = true
  185. Noclip.MouseButton1Down:connect(function()
  186. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  187. end)
  188.  
  189.  
  190. FEkill.Name = "FEkill"
  191. FEkill.Parent = main
  192. FEkill.BackgroundColor3 = Color3.new(1, 1, 1)
  193. FEkill.Position = UDim2.new(0.103096388, 0, 0.444923222, 0)
  194. FEkill.Size = UDim2.new(0, 221, 0, 39)
  195. FEkill.Style = Enum.ButtonStyle.RobloxRoundButton
  196. FEkill.Font = Enum.Font.SourceSans
  197. FEkill.Text = "FE fling (R6)"
  198. FEkill.TextColor3 = Color3.new(0, 0, 0)
  199. FEkill.TextScaled = true
  200. FEkill.TextSize = 14
  201. FEkill.TextWrapped = true
  202. FEkill.MouseButton1Down:connect(function()
  203.  
  204.  
  205. power = 500 -- change this to make it more or less powerful
  206.  
  207. game:GetService('RunService').Stepped:connect(function()
  208. game.Players.LocalPlayer.Character.Head.CanCollide = false
  209. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  210. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  211. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  212. end)
  213.  
  214. wait(.1)
  215. local bambam = Instance.new("BodyThrust")
  216. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  217. bambam.Force = Vector3.new(power,0,power)
  218. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  219. end)
  220.  
  221. Walkspeed.Name = "Walkspeed"
  222. Walkspeed.Parent = main
  223. Walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
  224. Walkspeed.Position = UDim2.new(0.106463395, 0, 0.587103307, 0)
  225. Walkspeed.Size = UDim2.new(0, 221, 0, 39)
  226. Walkspeed.Style = Enum.ButtonStyle.RobloxRoundButton
  227. Walkspeed.Font = Enum.Font.SourceSans
  228. Walkspeed.Text = "Walkspeed"
  229. Walkspeed.TextColor3 = Color3.new(0, 0, 0)
  230. Walkspeed.TextScaled = true
  231. Walkspeed.TextSize = 14
  232. Walkspeed.TextWrapped = true
  233. Walkspeed.MouseButton1Down:connect(function()
  234. game:GetService('Players').LocalPlayer.Character.Humanoid.Name = 'Humanoida'
  235. game:GetService('Players').LocalPlayer.Character.Humanoida.WalkSpeed = 50
  236.  
  237. end)
  238.  
  239. Jump.Name = "Jump"
  240. Jump.Parent = main
  241. Jump.BackgroundColor3 = Color3.new(1, 1, 1)
  242. Jump.Position = UDim2.new(0.106463395, 0, 0.724544048, 0)
  243. Jump.Size = UDim2.new(0, 221, 0, 39)
  244. Jump.Style = Enum.ButtonStyle.RobloxRoundButton
  245. Jump.Font = Enum.Font.SourceSans
  246. Jump.Text = "Jump Power"
  247. Jump.TextColor3 = Color3.new(0, 0, 0)
  248. Jump.TextScaled = true
  249. Jump.TextSize = 14
  250. Jump.TextWrapped = true
  251. Jump.MouseButton1Down:connect(function()
  252. game:GetService('Players').LocalPlayer.Character.Humanoid.Name = 'Humanoida'
  253. game:GetService('Players').LocalPlayer.Character.Humanoida.JumpPower = 100
  254.  
  255. end)
  256.  
  257.  
  258. Close.Name = "Close"
  259. Close.Parent = main
  260. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  261. Close.BorderColor3 = Color3.new(1, 1, 1)
  262. Close.Position = UDim2.new(0.814222157, 0, -0.0106537435, 0)
  263. Close.Size = UDim2.new(0, 46, 0, 16)
  264. Close.Font = Enum.Font.SourceSans
  265. Close.Text = "Close GUI"
  266. Close.TextColor3 = Color3.new(1, 1, 1)
  267. Close.TextScaled = true
  268. Close.TextSize = 14
  269. Close.TextWrapped = true
  270. Close.MouseButton1Down:connect(function()
  271. main.Visible = false
  272. end)
  273. --Dawn GUI made by Fortress MAster
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement