Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.55 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("ImageLabel")
  8. local logo = Instance.new("TextLabel")
  9. local close = Instance.new("TextButton")
  10. local open = Instance.new("TextButton")
  11. local neon = Instance.new("Frame")
  12. local logo2 = Instance.new("TextLabel")
  13. local logo3 = Instance.new("TextLabel")
  14. local main2 = Instance.new("Frame")
  15. local neon2 = Instance.new("Frame")
  16. local red = Instance.new("TextButton")
  17. local green = Instance.new("TextButton")
  18. local gx = Instance.new("TextLabel")
  19. local gx3 = Instance.new("TextLabel")
  20. local ud2 = Instance.new("TextLabel")
  21. local ud1 = Instance.new("TextLabel")
  22. local ud3 = Instance.new("TextLabel")
  23. local gx2 = Instance.new("TextLabel")
  24. local red2 = Instance.new("TextButton")
  25. local green2 = Instance.new("TextButton")
  26. local list1 = Instance.new("TextLabel")
  27. local list2 = Instance.new("TextLabel")
  28. local list3 = Instance.new("TextLabel")
  29. local listmain = Instance.new("Frame")
  30. local neon3 = Instance.new("Frame")
  31. local disc = Instance.new("TextLabel")
  32.  
  33. --Properties:
  34.  
  35. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  36.  
  37. main.Name = "main"
  38. main.Parent = ScreenGui
  39. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. main.BackgroundTransparency = 1.000
  41. main.Position = UDim2.new(0.0219987519, 0, 0.0221130252, 0)
  42. main.Size = UDim2.new(0, 210, 0, 35)
  43. main.Image = "rbxassetid://3570695787"
  44. main.ImageColor3 = Color3.fromRGB(65, 65, 65)
  45. main.ScaleType = Enum.ScaleType.Slice
  46. main.SliceCenter = Rect.new(100, 100, 100, 100)
  47.  
  48. logo.Name = "logo"
  49. logo.Parent = main
  50. logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  51. logo.BackgroundTransparency = 1.000
  52. logo.Position = UDim2.new(-0.0476189852, 0, -4.76837158e-07, 0)
  53. logo.Size = UDim2.new(0, 210, 0, 35)
  54. logo.Font = Enum.Font.Gotham
  55. logo.Text = "[NemesisTheory]"
  56. logo.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. logo.TextSize = 16.000
  58.  
  59. close.Name = "close"
  60. close.Parent = main
  61. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. close.BackgroundTransparency = 1.000
  63. close.Position = UDim2.new(0.714285731, 0, -0.22857143, 0)
  64. close.Size = UDim2.new(0, 60, 0, 52)
  65. close.Font = Enum.Font.SourceSans
  66. close.Text = "●"
  67. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  68. close.TextSize = 14.000
  69. close.MouseButton1Down:connect(function()
  70. open.Visible = true
  71. main2.Visible = false
  72. end)
  73.  
  74. open.Name = "open"
  75. open.Parent = main
  76. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  77. open.BackgroundTransparency = 1.000
  78. open.Position = UDim2.new(0.714285731, 0, -0.22857143, 0)
  79. open.Size = UDim2.new(0, 60, 0, 52)
  80. open.Font = Enum.Font.SourceSans
  81. open.Text = "●"
  82. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  83. open.TextSize = 14.000
  84. open.MouseButton1Down:connect(function()
  85. main2.Visible = true
  86. open.Visible = false
  87. end)
  88.  
  89. neon.Name = "neon"
  90. neon.Parent = main
  91. neon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  92. neon.BorderSizePixel = 0
  93. neon.Position = UDim2.new(0.042857144, 0, 1, 0)
  94. neon.Size = UDim2.new(0, 192, 0, 3)
  95.  
  96. logo2.Name = "logo 2"
  97. logo2.Parent = main
  98. logo2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  99. logo2.BackgroundTransparency = 1.000
  100. logo2.Position = UDim2.new(-0.0476189852, 0, -2.38418579e-07, 0)
  101. logo2.Size = UDim2.new(0, 210, 0, 35)
  102. logo2.Font = Enum.Font.Gotham
  103. logo2.Text = "[NemesisTheory]"
  104. logo2.TextColor3 = Color3.fromRGB(255, 255, 255)
  105. logo2.TextSize = 16.000
  106.  
  107. logo3.Name = "logo 3"
  108. logo3.Parent = main
  109. logo3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  110. logo3.BackgroundTransparency = 1.000
  111. logo3.Position = UDim2.new(-0.042857144, 0, 0, 0)
  112. logo3.Size = UDim2.new(0, 210, 0, 35)
  113. logo3.Font = Enum.Font.Gotham
  114. logo3.Text = "[NemesisTheory]"
  115. logo3.TextColor3 = Color3.fromRGB(255, 255, 255)
  116. logo3.TextSize = 16.000
  117.  
  118. main2.Name = "main 2"
  119. main2.Parent = ScreenGui
  120. main2.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  121. main2.BorderSizePixel = 0
  122. main2.Position = UDim2.new(0.0270270109, 0, 0.0909090638, 0)
  123. main2.Size = UDim2.new(0, 192, 0, 100)
  124.  
  125. neon2.Name = "neon2"
  126. neon2.Parent = main2
  127. neon2.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  128. neon2.BorderSizePixel = 0
  129. neon2.Position = UDim2.new(-0.00520825386, 0, 0.900000036, 0)
  130. neon2.Size = UDim2.new(0, 192, 0, 10)
  131.  
  132. red.Name = "red"
  133. red.Parent = main2
  134. red.BackgroundColor3 = Color3.fromRGB(140, 0, 0)
  135. red.BorderColor3 = Color3.fromRGB(70, 70, 70)
  136. red.Position = UDim2.new(0.770833313, 0, 0.119999997, 0)
  137. red.Size = UDim2.new(0, 31, 0, 29)
  138. red.Font = Enum.Font.SourceSans
  139. red.Text = ""
  140. red.TextColor3 = Color3.fromRGB(0, 0, 0)
  141. red.TextSize = 14.000
  142. red.MouseButton1Down:connect(function()
  143. loadstring(game:GetObjects("rbxassetid://4703927525")[1].Source)()
  144. green.Visible = true
  145. end)
  146.  
  147. green.Name = "green"
  148. green.Parent = main2
  149. green.BackgroundColor3 = Color3.fromRGB(32, 100, 47)
  150. green.BorderColor3 = Color3.fromRGB(70, 70, 70)
  151. green.Position = UDim2.new(0.770833313, 0, 0.119999997, 0)
  152. green.Size = UDim2.new(0, 31, 0, 29)
  153. green.Font = Enum.Font.SourceSans
  154. green.Text = ""
  155. green.TextColor3 = Color3.fromRGB(0, 0, 0)
  156. green.TextScaled = true
  157. green.TextSize = 14.000
  158. green.TextWrapped = true
  159. green.Visible = false
  160.  
  161. gx.Name = "gx"
  162. gx.Parent = main2
  163. gx.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  164. gx.BackgroundTransparency = 1.000
  165. gx.Position = UDim2.new(-0.104166664, 0, 0.00999999978, 0)
  166. gx.Size = UDim2.new(0, 168, 0, 50)
  167. gx.Font = Enum.Font.Gotham
  168. gx.Text = "[SL] Gift Admin "
  169. gx.TextColor3 = Color3.fromRGB(255, 255, 255)
  170. gx.TextSize = 16.000
  171.  
  172. gx3.Name = "gx3"
  173. gx3.Parent = main2
  174. gx3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  175. gx3.BackgroundTransparency = 1.000
  176. gx3.Position = UDim2.new(-0.104166664, 0, 0.00999999978, 0)
  177. gx3.Size = UDim2.new(0, 168, 0, 50)
  178. gx3.Font = Enum.Font.Gotham
  179. gx3.Text = "[SL] Gift Admin "
  180. gx3.TextColor3 = Color3.fromRGB(255, 255, 255)
  181. gx3.TextSize = 16.000
  182.  
  183. ud2.Name = "ud2"
  184. ud2.Parent = main2
  185. ud2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  186. ud2.BackgroundTransparency = 1.000
  187. ud2.Position = UDim2.new(0.609375, 0, 0.00999999978, 0)
  188. ud2.Size = UDim2.new(0, 31, 0, 50)
  189. ud2.Font = Enum.Font.SourceSans
  190. ud2.Text = "─"
  191. ud2.TextColor3 = Color3.fromRGB(255, 255, 255)
  192. ud2.TextSize = 14.000
  193.  
  194. ud1.Name = "ud1"
  195. ud1.Parent = main2
  196. ud1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  197. ud1.BackgroundTransparency = 1.000
  198. ud1.Position = UDim2.new(0.609375, 0, 0.00999999978, 0)
  199. ud1.Size = UDim2.new(0, 31, 0, 50)
  200. ud1.Font = Enum.Font.SourceSans
  201. ud1.Text = "─"
  202. ud1.TextColor3 = Color3.fromRGB(255, 255, 255)
  203. ud1.TextSize = 14.000
  204.  
  205. ud3.Name = "ud3"
  206. ud3.Parent = main2
  207. ud3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  208. ud3.BackgroundTransparency = 1.000
  209. ud3.Position = UDim2.new(0.609375, 0, 0.00999999978, 0)
  210. ud3.Size = UDim2.new(0, 31, 0, 50)
  211. ud3.Font = Enum.Font.SourceSans
  212. ud3.Text = "─"
  213. ud3.TextColor3 = Color3.fromRGB(255, 255, 255)
  214. ud3.TextSize = 14.000
  215.  
  216. gx2.Name = "gx2"
  217. gx2.Parent = main2
  218. gx2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  219. gx2.BackgroundTransparency = 1.000
  220. gx2.Position = UDim2.new(-0.104166664, 0, 0.00999999978, 0)
  221. gx2.Size = UDim2.new(0, 168, 0, 50)
  222. gx2.Font = Enum.Font.Gotham
  223. gx2.Text = "[SL] Gift Admin "
  224. gx2.TextColor3 = Color3.fromRGB(255, 255, 255)
  225. gx2.TextSize = 16.000
  226.  
  227. red2.Name = "red2"
  228. red2.Parent = main2
  229. red2.BackgroundColor3 = Color3.fromRGB(140, 0, 0)
  230. red2.BorderColor3 = Color3.fromRGB(70, 70, 70)
  231. red2.Position = UDim2.new(0.770833313, 0, 0.50999999, 0)
  232. red2.Size = UDim2.new(0, 31, 0, 29)
  233. red2.Font = Enum.Font.SourceSans
  234. red2.Text = ""
  235. red2.TextColor3 = Color3.fromRGB(0, 0, 0)
  236. red2.TextSize = 14.000
  237. red2.MouseButton1Down:connect(function()
  238. listmain.Visible = true
  239. green2.Visible = true
  240. end)
  241.  
  242. green2.Name = "green2"
  243. green2.Parent = main2
  244. green2.BackgroundColor3 = Color3.fromRGB(32, 100, 47)
  245. green2.BorderColor3 = Color3.fromRGB(70, 70, 70)
  246. green2.Position = UDim2.new(0.770833313, 0, 0.50999999, 0)
  247. green2.Size = UDim2.new(0, 31, 0, 29)
  248. green2.Font = Enum.Font.SourceSans
  249. green2.Text = ""
  250. green2.TextColor3 = Color3.fromRGB(0, 0, 0)
  251. green2.TextScaled = true
  252. green2.TextSize = 14.000
  253. green2.TextWrapped = true
  254. green2.Visible = false
  255. green2.MouseButton1Down:connect(function()
  256. listmain.Visible = false
  257. green2.Visible = false
  258. end)
  259.  
  260. list1.Name = "list1"
  261. list1.Parent = main2
  262. list1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  263. list1.BackgroundTransparency = 1.000
  264. list1.Position = UDim2.new(-0.109375, 0, 0.400000006, 0)
  265. list1.Size = UDim2.new(0, 188, 0, 50)
  266. list1.Font = Enum.Font.Gotham
  267. list1.Text = "[SL] List command"
  268. list1.TextColor3 = Color3.fromRGB(255, 255, 255)
  269. list1.TextSize = 16.000
  270.  
  271. list2.Name = "list2"
  272. list2.Parent = main2
  273. list2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  274. list2.BackgroundTransparency = 1.000
  275. list2.Position = UDim2.new(-0.109375, 0, 0.400000006, 0)
  276. list2.Size = UDim2.new(0, 188, 0, 50)
  277. list2.Font = Enum.Font.Gotham
  278. list2.Text = "[SL] List command"
  279. list2.TextColor3 = Color3.fromRGB(255, 255, 255)
  280. list2.TextSize = 16.000
  281.  
  282. list3.Name = "list3"
  283. list3.Parent = main2
  284. list3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  285. list3.BackgroundTransparency = 1.000
  286. list3.Position = UDim2.new(-0.109375, 0, 0.400000006, 0)
  287. list3.Size = UDim2.new(0, 188, 0, 50)
  288. list3.Font = Enum.Font.Gotham
  289. list3.Text = "[SL] List command"
  290. list3.TextColor3 = Color3.fromRGB(255, 255, 255)
  291. list3.TextSize = 16.000
  292.  
  293. listmain.Name = "list main"
  294. listmain.Parent = ScreenGui
  295. listmain.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  296. listmain.BorderSizePixel = 0
  297. listmain.Position = UDim2.new(0.159648031, 0, 0.0896806121, 0)
  298. listmain.Size = UDim2.new(0, 171, 0, 100)
  299. listmain.Visible = false
  300.  
  301. neon3.Name = "neon3"
  302. neon3.Parent = listmain
  303. neon3.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  304. neon3.BorderSizePixel = 0
  305. neon3.Position = UDim2.new(0, 0, 0.899999976, 0)
  306. neon3.Size = UDim2.new(0, 171, 0, 10)
  307.  
  308. disc.Name = "disc"
  309. disc.Parent = listmain
  310. disc.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  311. disc.BorderSizePixel = 0
  312. disc.Position = UDim2.new(0.0350877196, 0, 0.119999997, 0)
  313. disc.Size = UDim2.new(0, 158, 0, 68)
  314. disc.Font = Enum.Font.Gotham
  315. disc.Text = "If you want the list of commands you gotta join my discord and dm me"
  316. disc.TextColor3 = Color3.fromRGB(255, 255, 255)
  317. disc.TextScaled = true
  318. disc.TextSize = 14.000
  319. disc.TextWrapped = true
  320.  
  321. -- Scripts:
  322.  
  323. local function OHTPD_fake_script() -- neon.LocalScript
  324. local script = Instance.new('LocalScript', neon)
  325.  
  326. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  327.  
  328. counter = 0
  329.  
  330. while wait(0.1)do
  331. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  332.  
  333. counter = counter + 0.01
  334. end
  335. end
  336. coroutine.wrap(OHTPD_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement