Advertisement
RyanDaCoder

EquinoxUI 1.01

Feb 21st, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.11 KB | None | 0 0
  1. --// Created by SummerEquinox \\--
  2.  
  3. local EQUINOX = Instance.new("ScreenGui")
  4. EQUINOX.Parent = game.Players.LocalPlayer.PlayerGui
  5. EQUINOX.Name = "EquinoxUI"
  6.  
  7. local test2 = Instance.new("TextLabel")
  8. test2.Parent = EQUINOX
  9. test2.Size = UDim2.new(.5,0,.5,0)
  10. test2.Position = UDim2.new(.25,0,.25,0)
  11. test2.Draggable = true
  12. test2.Active = true
  13.  
  14. test2.Text = "Welcome to EQUINOX"
  15. test2.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  16. test2.TextColor3 = Color3.new(0.5,0.5,0.5)
  17. test2.Font = "Fantasy"
  18. test2.TextScaled = true
  19. test2.BackgroundTransparency = 1
  20. test2.TextTransparency = 1
  21.  
  22. for i = 1,10 do wait()
  23. test2.BackgroundTransparency = test2.BackgroundTransparency - .1
  24. test2.TextTransparency = test2.TextTransparency - .1
  25. end
  26.  
  27. wait(1.5)
  28.  
  29. for i = 1,10 do wait()
  30. test2.TextTransparency = test2.TextTransparency + .1
  31. end
  32.  
  33. local newTab = test2:Clone()
  34. newTab.Parent = test2
  35. newTab.Position = UDim2.new(0,0,0,0)
  36. newTab.Size = UDim2.new(.5,0,.1,0)
  37. newTab.TextTransparency = 0
  38.  
  39. if game.Workspace.FilteringEnabled then
  40. newTab.Text = "This game is FilteringEnabled."
  41. else
  42. newTab.Text = "This game is not FilteringEnabled."
  43. end
  44.  
  45. newTab.BorderSizePixel = 0
  46. newTab.TextStrokeTransparency = 0
  47. newTab.Active = false
  48.  
  49. local test3 = Instance.new("ScrollingFrame")
  50. test3.Parent = test2
  51. test3.Size = UDim2.new(.5,0,.5,0)
  52. test3.Position = UDim2.new(0,0,.5,0)
  53. test3.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  54.  
  55. local test4 = Instance.new("TextButton")
  56. test4.Parent = test3
  57. test4.Size = UDim2.new(1,0,.05,0)
  58. test4.Position = UDim2.new(0,0,0,0)
  59. test4.Text = "Kill All"
  60. test4.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  61. test4.TextColor3 = Color3.new(0.5,0.5,0.5)
  62. test4.Font = "Fantasy"
  63. test4.TextScaled = true
  64.  
  65. local test5 = Instance.new("ScrollingFrame")
  66. test5.Parent = test2
  67. test5.Size = UDim2.new(.3,0,.4,0)
  68. test5.Position = UDim2.new(.7,0,.5,0)
  69. test5.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  70.  
  71. local test6 = Instance.new("TextLabel")
  72. test6.Parent = test2
  73. test6.Size = UDim2.new(.2,0,.05,0)
  74. test6.Position = UDim2.new(.65,0,.4,0)
  75. test6.Text = "OUTPUT:"
  76. test6.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  77. test6.TextColor3 = Color3.new(0.5,0.5,0.5)
  78. test6.Font = "Fantasy"
  79. test6.TextScaled = true
  80. test6.BorderSizePixel = 0
  81. test6.TextStrokeTransparency = 0
  82.  
  83. local outputPos = 0
  84.  
  85. local function outputRequired(message)
  86. local text = Instance.new("TextLabel")
  87. text.Parent = test5
  88. text.Size = UDim2.new(1,0,.05,0)
  89. text.Position = UDim2.new(0,0,outputPos,0)
  90. outputPos = outputPos + .025
  91. text.Text = message
  92. text.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  93. text.TextColor3 = Color3.new(0.5,0.5,0.5)
  94. text.Font = "Fantasy"
  95. text.TextScaled = false
  96. text.TextSize = 16
  97. text.BorderSizePixel = 0
  98. text.TextStrokeTransparency = 0
  99. text.BackgroundTransparency = 1
  100. end
  101.  
  102. test4.MouseButton1Down:connect(function()
  103. for _,player in pairs(game.Players:GetChildren()) do
  104. player.Character.Humanoid.Health = 0
  105. end
  106. if game.Workspace.FilteringEnabled then
  107. outputRequired("Changes will not be replicated.")
  108. end
  109. end)
  110.  
  111. local test7 = Instance.new("TextButton")
  112. test7.Parent = test3
  113. test7.Size = UDim2.new(1,0,.05,0)
  114. test7.Position = UDim2.new(0,0,.05,0)
  115. test7.Text = "Global Low Gravity"
  116. test7.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  117. test7.TextColor3 = Color3.new(0.5,0.5,0.5)
  118. test7.Font = "Fantasy"
  119. test7.TextScaled = true
  120.  
  121. test7.MouseButton1Down:connect(function()
  122. game.Workspace.Gravity = 15
  123. end)
  124.  
  125. local test8 = Instance.new("TextButton")
  126. test8.Parent = test2
  127. test8.Size = UDim2.new(.1,0,.1,0)
  128. test8.Position = UDim2.new(.9,0,0,0)
  129. test8.Text = "X"
  130. test8.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  131. test8.TextColor3 = Color3.new(1,.1,.1)
  132. test8.Font = "Fantasy"
  133. test8.TextScaled = true
  134. test8.BorderSizePixel = 0
  135.  
  136. test8.MouseButton1Down:connect(function()
  137. EQUINOX:Destroy()
  138. end)
  139.  
  140. local test9 = Instance.new("TextButton")
  141. test9.Parent = test3
  142. test9.Size = UDim2.new(1,0,.05,0)
  143. test9.Position = UDim2.new(0,0,.1,0)
  144. test9.Text = "Fire ReplicatedStorage"
  145. test9.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  146. test9.TextColor3 = Color3.new(0.5,0.5,0.5)
  147. test9.Font = "Fantasy"
  148. test9.TextScaled = true
  149.  
  150. test9.MouseButton1Down:connect(function()
  151. if game.ReplicatedStorage:FindFirstChild("RemoteEvent") then
  152. for _,v in pairs(game.ReplicatedStorage:GetChildren()) do
  153. if v:IsA("RemoteEvent") then
  154. v:FireServer()
  155. v:FireServer("Fired")
  156. v:FireServer(150000)
  157. end
  158. end
  159. else
  160. outputRequired("No direct descendents found.")
  161. end
  162. end)
  163.  
  164. local test10 = Instance.new("TextButton")
  165. test10.Parent = test3
  166. test10.Size = UDim2.new(1,0,.05,0)
  167. test10.Position = UDim2.new(0,0,.15,0)
  168. test10.Text = "Fly"
  169. test10.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  170. test10.TextColor3 = Color3.new(0.5,0.5,0.5)
  171. test10.Font = "Fantasy"
  172. test10.TextScaled = true
  173.  
  174. test10.MouseButton1Down:connect(function()
  175. repeat wait()
  176. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  177. local mouse = game.Players.LocalPlayer:GetMouse()
  178. repeat wait() until mouse
  179. local plr = game.Players.LocalPlayer
  180. local torso = plr.Character.Torso
  181. local flying = true
  182. local deb = true
  183. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  184. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  185. local maxspeed = 50
  186. local speed = 0
  187. function Fly()
  188. local bg = Instance.new("BodyGyro", torso)
  189. bg.P = 9e4
  190. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  191. bg.cframe = torso.CFrame
  192. local bv = Instance.new("BodyVelocity", torso)
  193. bv.velocity = Vector3.new(0,0.1,0)
  194. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  195. repeat wait()
  196. plr.Character.Humanoid.PlatformStand = true
  197. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  198. speed = speed+.5+(speed/maxspeed)
  199. if speed > maxspeed then
  200. speed = maxspeed
  201. end
  202. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  203. speed = speed-1
  204. if speed < 0 then
  205. speed = 0
  206. end
  207. end
  208. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  209. 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
  210. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  211. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  212. 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
  213. else
  214. bv.velocity = Vector3.new(0,0.1,0)
  215. end
  216. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  217. until not flying
  218. ctrl = {f = 0, b = 0, l = 0, r = 0}
  219. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  220. speed = 0
  221. bg:Destroy()
  222. bv:Destroy()
  223. plr.Character.Humanoid.PlatformStand = false
  224. end
  225. mouse.KeyDown:connect(function(key)
  226. if key:lower() == "e" then
  227. if flying then flying = false
  228. else
  229. flying = true
  230. Fly()
  231. end
  232. elseif key:lower() == "w" then
  233. ctrl.f = 1
  234. elseif key:lower() == "s" then
  235. ctrl.b = -1
  236. elseif key:lower() == "a" then
  237. ctrl.l = -1
  238. elseif key:lower() == "d" then
  239. ctrl.r = 1
  240. end
  241. end)
  242. mouse.KeyUp:connect(function(key)
  243. if key:lower() == "w" then
  244. ctrl.f = 0
  245. elseif key:lower() == "s" then
  246. ctrl.b = 0
  247. elseif key:lower() == "a" then
  248. ctrl.l = 0
  249. elseif key:lower() == "d" then
  250. ctrl.r = 0
  251. end
  252. end)
  253. Fly()
  254. end)
  255.  
  256. local test11 = Instance.new("TextButton")
  257. test11.Parent = test3
  258. test11.Size = UDim2.new(1,0,.05,0)
  259. test11.Position = UDim2.new(0,0,.2,0)
  260. test11.Text = "Print Explorer"
  261. test11.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  262. test11.TextColor3 = Color3.new(0.5,0.5,0.5)
  263. test11.Font = "Fantasy"
  264. test11.TextScaled = true
  265.  
  266. test11.MouseButton1Down:connect(function()
  267. local function checkKids(parent)
  268. local kids = {}
  269. for _,v in pairs(parent:GetChildren()) do
  270. table.insert(kids,#kids+1,v.Name)
  271. end
  272. print(unpack(kids))
  273. return kids
  274. end
  275. for _,v in pairs(game.Workspace:GetChildren()) do
  276. if checkKids(v) then
  277. for _,c in pairs(v:GetChildren()) do
  278. if checkKids(c) then
  279. for _,a in pairs(c:GetChildren()) do
  280. end
  281. end
  282. end
  283. print("Checked 3 Descendent Depth - EquinoxUI")
  284. end
  285. end
  286. end)
  287.  
  288. local test12 = Instance.new("TextButton")
  289. test12.Parent = test3
  290. test12.Size = UDim2.new(1,0,.05,0)
  291. test12.Position = UDim2.new(0,0,.25,0)
  292. test12.Text = "Annoy Players"
  293. test12.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  294. test12.TextColor3 = Color3.new(0.5,0.5,0.5)
  295. test12.Font = "Fantasy"
  296. test12.TextScaled = true
  297.  
  298. test12.MouseButton1Down:connect(function()
  299. if game.Players.NumPlayers > 1 then
  300. for i = 1,5 do wait()
  301. for _,v in pairs(game.Players:GetChildren()) do
  302. wait()
  303. game.Players.LocalPlayer.Character:SetPrimaryPartCFrame(v.Character.Torso.CFrame)
  304. end
  305. end
  306. else
  307. outputRequired("No additional clients found.")
  308. end
  309. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement