PasteBinAutoUpdate

SYnapse

Jan 11th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.10 KB | None | 0 0
  1. -- Synapse GUI by Broken Developer
  2.  
  3.  
  4. -- Start of script
  5.  
  6.  
  7. -- Instances:
  8. local Synapse = Instance.new("ScreenGui")
  9. local MainFrame = Instance.new("Frame")
  10. local Logo = Instance.new("ImageLabel")
  11. local Version = Instance.new("TextLabel")
  12. local _ = Instance.new("TextButton")
  13. local X = Instance.new("TextButton")
  14. local ExeMain = Instance.new("Frame")
  15. local Execute = Instance.new("TextButton")
  16. local Clear = Instance.new("TextButton")
  17. local ScriptHubButton = Instance.new("TextButton")
  18. local ExeScroll = Instance.new("ScrollingFrame")
  19. local Input = Instance.new("TextBox")
  20. local ChangeThemeButton = Instance.new("TextButton")
  21. local ChangeThemeGui = Instance.new("Frame")
  22. local EnterDecalID = Instance.new("TextLabel")
  23. local EnterTheme = Instance.new("TextBox")
  24. local ChangeTheme = Instance.new("TextButton")
  25. local Decal = Instance.new("ImageLabel")
  26. local Mote = Instance.new("TextLabel")
  27. local TestButton = Instance.new("TextButton")
  28. local ScriptHubMain = Instance.new("Frame")
  29. local Selection = Instance.new("Frame")
  30. local Preview = Instance.new("Frame")
  31. local FeAnimationsPreview = Instance.new("Frame")
  32. local Name = Instance.new("TextLabel")
  33. local RunFEAnimations = Instance.new("TextButton")
  34. local Info = Instance.new("TextLabel")
  35. local InfiniteYeildFEPreview = Instance.new("Frame")
  36. local Name_2 = Instance.new("TextLabel")
  37. local RunInfiniteYeildFE = Instance.new("TextButton")
  38. local Info_2 = Instance.new("TextLabel")
  39. local DexExplorerPreview = Instance.new("Frame")
  40. local Name_3 = Instance.new("TextLabel")
  41. local RunDex = Instance.new("TextButton")
  42. local Info_3 = Instance.new("TextLabel")
  43. local RemoteSpyPreview = Instance.new("Frame")
  44. local Name_4 = Instance.new("TextLabel")
  45. local RunRemote = Instance.new("TextButton")
  46. local Info_4 = Instance.new("TextLabel")
  47. local Logo_2 = Instance.new("ImageLabel")
  48. local Version_2 = Instance.new("TextLabel")
  49. local InfiniteYeildFE = Instance.new("TextButton")
  50. local Dex = Instance.new("TextButton")
  51. local FEAnimations = Instance.new("TextButton")
  52. local RemoteSpy = Instance.new("TextButton")
  53. local ComingSoon = Instance.new("TextButton")
  54. local X_2 = Instance.new("TextButton")
  55. local OpenGUI = Instance.new("Frame")
  56. local OpenButton = Instance.new("TextButton")
  57. local LoadingScreen = Instance.new("Frame")
  58. local Logo_3 = Instance.new("ImageLabel")
  59. local Logo11 = Instance.new("TextLabel")
  60. local Loading1 = Instance.new("TextLabel")
  61. local ScrollingFrame = Instance.new("ScrollingFrame")
  62. local LoadingBar = Instance.new("Frame")
  63. --Properties:
  64. Synapse.Name = "Synapse"
  65. Synapse.Parent = game.CoreGui
  66.  
  67. MainFrame.Name = "MainFrame"
  68. MainFrame.Parent = Synapse
  69. MainFrame.Active = true
  70. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  71. MainFrame.Position = UDim2.new(0.237418264, 0, 0.212302208, 0)
  72. MainFrame.Size = UDim2.new(0, 649, 0, 347)
  73. MainFrame.Visible = false
  74.  
  75. Logo.Name = "Logo"
  76. Logo.Parent = MainFrame
  77. Logo.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  78. Logo.BackgroundTransparency = 1
  79. Logo.Position = UDim2.new(0.0138674891, 0, 0.0230547544, 0)
  80. Logo.Size = UDim2.new(0, 183, 0, 34)
  81. Logo.Image = "rbxassetid://1505584527"
  82.  
  83. Version.Name = "Version"
  84. Version.Parent = MainFrame
  85. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  86. Version.BackgroundTransparency = 1
  87. Version.Position = UDim2.new(0.305918306, 0, 0.048991356, 0)
  88. Version.Size = UDim2.new(0, 79, 0, 28)
  89. Version.Text = "GUI v1.1"
  90. Version.TextColor3 = Color3.new(1, 1, 1)
  91. Version.TextSize = 14
  92.  
  93. _.Name = "_"
  94. _.Parent = MainFrame
  95. _.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  96. _.BorderColor3 = Color3.new(1, 1, 1)
  97. _.BorderSizePixel = 0
  98. _.Position = UDim2.new(0.895223439, 0, 0, 0)
  99. _.Size = UDim2.new(0, 31, 0, 17)
  100. _.Font = Enum.Font.SourceSansBold
  101. _.Text = "_"
  102. _.TextColor3 = Color3.new(1, 1, 1)
  103. _.TextSize = 14
  104. _.MouseButton1Down:connect(function()
  105. MainFrame.Visible = false
  106. OpenGUI.Visible = true
  107. end)
  108.  
  109. X.Name = "X"
  110. X.Parent = MainFrame
  111. X.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  112. X.BorderColor3 = Color3.new(1, 1, 1)
  113. X.BorderSizePixel = 0
  114. X.Position = UDim2.new(0.952234209, 0, 0, 0)
  115. X.Size = UDim2.new(0, 31, 0, 17)
  116. X.Font = Enum.Font.SourceSansSemibold
  117. X.Text = "X"
  118. X.TextColor3 = Color3.new(1, 1, 1)
  119. X.TextSize = 14
  120. X.MouseButton1Down:connect(function()
  121. MainFrame:Destroy()
  122. end)
  123.  
  124. ExeMain.Name = "ExeMain"
  125. ExeMain.Parent = MainFrame
  126. ExeMain.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  127. ExeMain.BorderColor3 = Color3.new(1, 1, 1)
  128. ExeMain.Position = UDim2.new(0.0593865402, 0, 0.144266322, 0)
  129. ExeMain.Size = UDim2.new(0, 571, 0, 231)
  130. Execute.MouseButton1Down:connect(function()
  131. loadstring(Input.Text) ()
  132. end)
  133.  
  134. Clear.MouseButton1Down:connect(function()
  135. Input.Text = ""
  136. end)
  137.  
  138. Execute.Name = "Execute"
  139. Execute.Parent = ExeMain
  140. Execute.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  141. Execute.BorderColor3 = Color3.new(1, 1, 1)
  142. Execute.Position = UDim2.new(0, 0, 1.11688316, 0)
  143. Execute.Size = UDim2.new(0, 125, 0, 29)
  144. Execute.Text = "Execute"
  145. Execute.TextColor3 = Color3.new(1, 1, 1)
  146. Execute.TextSize = 14
  147.  
  148. Clear.Name = "Clear"
  149. Clear.Parent = ExeMain
  150. Clear.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  151. Clear.BorderColor3 = Color3.new(1, 1, 1)
  152. Clear.Position = UDim2.new(0.253940433, 0, 1.11688316, 0)
  153. Clear.Size = UDim2.new(0, 94, 0, 29)
  154. Clear.Text = "Clear"
  155. Clear.TextColor3 = Color3.new(1, 1, 1)
  156. Clear.TextSize = 14
  157.  
  158. ScriptHubButton.Name = "ScriptHubButton"
  159. ScriptHubButton.Parent = ExeMain
  160. ScriptHubButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  161. ScriptHubButton.BorderColor3 = Color3.new(1, 1, 1)
  162. ScriptHubButton.Position = UDim2.new(0.471103281, 0, 1.11688316, 0)
  163. ScriptHubButton.Size = UDim2.new(0, 125, 0, 29)
  164. ScriptHubButton.Text = "ScriptHub"
  165. ScriptHubButton.TextColor3 = Color3.new(1, 1, 1)
  166. ScriptHubButton.TextSize = 14
  167.  
  168. ExeScroll.Name = "ExeScroll"
  169. ExeScroll.Parent = ExeMain
  170. ExeScroll.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  171. ExeScroll.Size = UDim2.new(0, 571, 0, 247)
  172. ExeScroll.VerticalScrollBarInset = Enum.ScrollBarInset.Always
  173.  
  174. Input.Name = "Input"
  175. Input.Parent = ExeScroll
  176. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  177. Input.BackgroundTransparency = 1
  178. Input.Size = UDim2.new(0, 550, 0, 900)
  179. Input.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  180. Input.Text = ""
  181. Input.TextColor3 = Color3.new(1, 1, 1)
  182. Input.TextSize = 14
  183. Input.TextXAlignment = Enum.TextXAlignment.Left
  184. Input.TextYAlignment = Enum.TextYAlignment.Top
  185.  
  186. ChangeThemeButton.Name = "ChangeThemeButton"
  187. ChangeThemeButton.Parent = ExeMain
  188. ChangeThemeButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  189. ChangeThemeButton.BorderColor3 = Color3.new(1, 1, 1)
  190. ChangeThemeButton.Position = UDim2.new(0.728546441, 0, 1.11688316, 0)
  191. ChangeThemeButton.Size = UDim2.new(0, 155, 0, 29)
  192. ChangeThemeButton.Text = "Change Theme"
  193. ChangeThemeButton.TextColor3 = Color3.new(1, 1, 1)
  194. ChangeThemeButton.TextSize = 14
  195. ChangeThemeButton.MouseButton1Click:connect(function()
  196. ChangeThemeButton.Text = "Coming Soon!"
  197. end)
  198.  
  199. ChangeThemeGui.Name = "ChangeThemeGui"
  200. ChangeThemeGui.Parent = MainFrame
  201. ChangeThemeGui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  202. ChangeThemeGui.Position = UDim2.new(0.243451416, 0, 0, 0)
  203. ChangeThemeGui.Size = UDim2.new(0, 332, 0, 347)
  204. ChangeThemeGui.Visible = false
  205.  
  206. EnterDecalID.Name = "EnterDecalID"
  207. EnterDecalID.Parent = ChangeThemeGui
  208. EnterDecalID.BackgroundColor3 = Color3.new(1, 1, 1)
  209. EnterDecalID.BackgroundTransparency = 1
  210. EnterDecalID.Position = UDim2.new(0.19879517, 0, 0.0489913523, 0)
  211. EnterDecalID.Size = UDim2.new(0, 200, 0, 50)
  212. EnterDecalID.Font = Enum.Font.SourceSansBold
  213. EnterDecalID.Text = "Enter Decal ID"
  214. EnterDecalID.TextColor3 = Color3.new(1, 1, 1)
  215. EnterDecalID.TextSize = 20
  216.  
  217. EnterTheme.Name = "EnterTheme"
  218. EnterTheme.Parent = ChangeThemeGui
  219. EnterTheme.BackgroundColor3 = Color3.new(0, 0, 0)
  220. EnterTheme.BorderSizePixel = 0
  221. EnterTheme.Position = UDim2.new(0.0993975922, 0, 0.262247801, 0)
  222. EnterTheme.Size = UDim2.new(0, 266, 0, 35)
  223. EnterTheme.Font = Enum.Font.ArialBold
  224. EnterTheme.Text = "Decal ID Here"
  225. EnterTheme.TextColor3 = Color3.new(1, 1, 1)
  226. EnterTheme.TextSize = 14
  227. EnterTheme.TextXAlignment = Enum.TextXAlignment.Left
  228.  
  229. ChangeTheme.Name = "ChangeTheme"
  230. ChangeTheme.Parent = ChangeThemeGui
  231. ChangeTheme.BackgroundColor3 = Color3.new(0, 0, 0)
  232. ChangeTheme.BorderSizePixel = 0
  233. ChangeTheme.Position = UDim2.new(0.198795184, 0, 0.827089369, 0)
  234. ChangeTheme.Size = UDim2.new(0, 200, 0, 50)
  235. ChangeTheme.Font = Enum.Font.ArialBold
  236. ChangeTheme.Text = "Change Theme"
  237. ChangeTheme.TextColor3 = Color3.new(1, 1, 1)
  238. ChangeTheme.TextSize = 14
  239.  
  240. Decal.Name = "Decal"
  241. Decal.Parent = ChangeThemeGui
  242. Decal.BackgroundColor3 = Color3.new(1, 1, 1)
  243. Decal.Position = UDim2.new(0.300963819, 0, 0.426512957, 0)
  244. Decal.Size = UDim2.new(0, 131, 0, 116)
  245. Decal.Image = "rbxassetid://924320031"
  246.  
  247. Mote.Name = "Mote"
  248. Mote.Parent = ChangeThemeGui
  249. Mote.BackgroundColor3 = Color3.new(1, 1, 1)
  250. Mote.BackgroundTransparency = 1
  251. Mote.Position = UDim2.new(0.0993975922, 0, 1, 0)
  252. Mote.Size = UDim2.new(0, 266, 0, 49)
  253. Mote.Font = Enum.Font.ArialBold
  254. Mote.Text = "Note : This does not work fully yet, or may not work at all, please do not try to use yet, this is still a BETA project."
  255. Mote.TextColor3 = Color3.new(1, 1, 1)
  256. Mote.TextSize = 14
  257. Mote.TextWrapped = true
  258.  
  259. TestButton.Name = "TestButton"
  260. TestButton.Parent = ChangeThemeGui
  261. TestButton.BackgroundColor3 = Color3.new(0, 0, 0)
  262. TestButton.BorderSizePixel = 0
  263. TestButton.Position = UDim2.new(0.716867447, 0, 0.559077799, 0)
  264. TestButton.Size = UDim2.new(0, 73, 0, 23)
  265. TestButton.Font = Enum.Font.SourceSans
  266. TestButton.Text = "Test"
  267. TestButton.TextColor3 = Color3.new(1, 1, 1)
  268. TestButton.TextSize = 14
  269.  
  270. ScriptHubMain.Name = "ScriptHubMain"
  271. ScriptHubMain.Parent = Synapse
  272. ScriptHubMain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  273. ScriptHubMain.Position = UDim2.new(0.0745582283, 0, 0.0667726398, 0)
  274. ScriptHubMain.Size = UDim2.new(0, 589, 0, 456)
  275. ScriptHubMain.Visible = false
  276. ScriptHubMain.Active = true
  277. ScriptHubMain.Draggable = true
  278.  
  279. Selection.Name = "Selection"
  280. Selection.Parent = ScriptHubMain
  281. Selection.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  282. Selection.BorderColor3 = Color3.new(1, 1, 1)
  283. Selection.Position = UDim2.new(0.0237690974, 0, 0.197995752, 0)
  284. Selection.Size = UDim2.new(0, 245, 0, 337)
  285.  
  286. Preview.Name = "Preview"
  287. Preview.Parent = ScriptHubMain
  288. Preview.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  289. Preview.BorderColor3 = Color3.new(0, 0, 0)
  290. Preview.Position = UDim2.new(0.477079809, 0, 0.184210524, 0)
  291. Preview.Size = UDim2.new(0, 292, 0, 294)
  292.  
  293. FeAnimationsPreview.Name = "FeAnimationsPreview"
  294. FeAnimationsPreview.Parent = Preview
  295. FeAnimationsPreview.BackgroundColor3 = Color3.new(1, 1, 1)
  296. FeAnimationsPreview.BackgroundTransparency = 1
  297. FeAnimationsPreview.Size = UDim2.new(0, 292, 0, 294)
  298. FeAnimationsPreview.Visible = false
  299.  
  300. Name.Name = "Name"
  301. Name.Parent = FeAnimationsPreview
  302. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  303. Name.BackgroundTransparency = 1
  304. Name.Size = UDim2.new(0, 292, 0, 61)
  305. Name.Text = "FE Animations"
  306. Name.TextColor3 = Color3.new(1, 1, 1)
  307. Name.TextSize = 14
  308.  
  309. RunFEAnimations.Name = "RunFEAnimations"
  310. RunFEAnimations.Parent = FeAnimationsPreview
  311. RunFEAnimations.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  312. RunFEAnimations.BorderColor3 = Color3.new(1, 1, 1)
  313. RunFEAnimations.Position = UDim2.new(0.157534242, 0, 0.778911591, 0)
  314. RunFEAnimations.Size = UDim2.new(0, 200, 0, 50)
  315. RunFEAnimations.Text = "Run Script"
  316. RunFEAnimations.TextColor3 = Color3.new(1, 1, 1)
  317. RunFEAnimations.TextSize = 12
  318. RunFEAnimations.MouseButton1Click:connect(function()
  319. loadstring(game:HttpGet("https://pastebin.com/raw/nucL1nkC", true))()
  320. end)
  321.  
  322. Info.Name = "Info"
  323. Info.Parent = FeAnimationsPreview
  324. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  325. Info.BackgroundTransparency = 1
  326. Info.Position = UDim2.new(0.0445205495, 0, 0.227891162, 0)
  327. Info.Size = UDim2.new(0, 245, 0, 50)
  328. Info.Text = "FE Animations For Synapse"
  329. Info.TextColor3 = Color3.new(1, 1, 1)
  330. Info.TextSize = 11
  331. Info.TextXAlignment = Enum.TextXAlignment.Left
  332.  
  333. InfiniteYeildFEPreview.Name = "InfiniteYeildFEPreview"
  334. InfiniteYeildFEPreview.Parent = Preview
  335. InfiniteYeildFEPreview.BackgroundColor3 = Color3.new(1, 1, 1)
  336. InfiniteYeildFEPreview.BackgroundTransparency = 1
  337. InfiniteYeildFEPreview.Size = UDim2.new(0, 292, 0, 294)
  338. InfiniteYeildFEPreview.Visible = false
  339.  
  340. Name_2.Name = "Name"
  341. Name_2.Parent = InfiniteYeildFEPreview
  342. Name_2.BackgroundColor3 = Color3.new(1, 1, 1)
  343. Name_2.BackgroundTransparency = 1
  344. Name_2.Size = UDim2.new(0, 292, 0, 61)
  345. Name_2.Text = "Infinite Yeild FE [BETA]"
  346. Name_2.TextColor3 = Color3.new(1, 1, 1)
  347. Name_2.TextSize = 14
  348.  
  349. RunInfiniteYeildFE.Name = "RunInfiniteYeildFE"
  350. RunInfiniteYeildFE.Parent = InfiniteYeildFEPreview
  351. RunInfiniteYeildFE.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  352. RunInfiniteYeildFE.BorderColor3 = Color3.new(1, 1, 1)
  353. RunInfiniteYeildFE.Position = UDim2.new(0.157534242, 0, 0.778911591, 0)
  354. RunInfiniteYeildFE.Size = UDim2.new(0, 200, 0, 50)
  355. RunInfiniteYeildFE.Text = "Run Script"
  356. RunInfiniteYeildFE.TextColor3 = Color3.new(1, 1, 1)
  357. RunInfiniteYeildFE.TextSize = 12
  358. RunInfiniteYeildFE.MouseButton1Click:connect(function()
  359. loadstring(game:HttpGet("https://pastebin.com/raw/rDwRRYzi", true))()
  360. end)
  361.  
  362. Info_2.Name = "Info"
  363. Info_2.Parent = InfiniteYeildFEPreview
  364. Info_2.BackgroundColor3 = Color3.new(1, 1, 1)
  365. Info_2.BackgroundTransparency = 1
  366. Info_2.Position = UDim2.new(0.0445205495, 0, 0.227891162, 0)
  367. Info_2.Size = UDim2.new(0, 245, 0, 50)
  368. Info_2.Text = "Infinite Yeild FE For Synapse"
  369. Info_2.TextColor3 = Color3.new(1, 1, 1)
  370. Info_2.TextSize = 11
  371. Info_2.TextXAlignment = Enum.TextXAlignment.Left
  372.  
  373. DexExplorerPreview.Name = "DexExplorerPreview"
  374. DexExplorerPreview.Parent = Preview
  375. DexExplorerPreview.BackgroundColor3 = Color3.new(1, 1, 1)
  376. DexExplorerPreview.BackgroundTransparency = 1
  377. DexExplorerPreview.Size = UDim2.new(0, 292, 0, 294)
  378. DexExplorerPreview.Visible = false
  379.  
  380. Name_3.Name = "Name"
  381. Name_3.Parent = DexExplorerPreview
  382. Name_3.BackgroundColor3 = Color3.new(1, 1, 1)
  383. Name_3.BackgroundTransparency = 1
  384. Name_3.Size = UDim2.new(0, 292, 0, 61)
  385. Name_3.Text = "Dex Explorer"
  386. Name_3.TextColor3 = Color3.new(1, 1, 1)
  387. Name_3.TextSize = 14
  388.  
  389. RunDex.Name = "RunDex"
  390. RunDex.Parent = DexExplorerPreview
  391. RunDex.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  392. RunDex.BorderColor3 = Color3.new(1, 1, 1)
  393. RunDex.Position = UDim2.new(0.157534242, 0, 0.778911591, 0)
  394. RunDex.Size = UDim2.new(0, 200, 0, 50)
  395. RunDex.Text = "Run Script"
  396. RunDex.TextColor3 = Color3.new(1, 1, 1)
  397. RunDex.TextSize = 12
  398. RunDex.MouseButton1Click:connect(function()
  399. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  400. end)
  401.  
  402. Info_3.Name = "Info"
  403. Info_3.Parent = DexExplorerPreview
  404. Info_3.BackgroundColor3 = Color3.new(1, 1, 1)
  405. Info_3.BackgroundTransparency = 1
  406. Info_3.Position = UDim2.new(0.0445205495, 0, 0.227891162, 0)
  407. Info_3.Size = UDim2.new(0, 245, 0, 50)
  408. Info_3.Text = "Dex Explorer for Synapse"
  409. Info_3.TextColor3 = Color3.new(1, 1, 1)
  410. Info_3.TextSize = 11
  411. Info_3.TextXAlignment = Enum.TextXAlignment.Left
  412.  
  413. RemoteSpyPreview.Name = "RemoteSpyPreview"
  414. RemoteSpyPreview.Parent = Preview
  415. RemoteSpyPreview.BackgroundColor3 = Color3.new(1, 1, 1)
  416. RemoteSpyPreview.BackgroundTransparency = 1
  417. RemoteSpyPreview.Size = UDim2.new(0, 292, 0, 294)
  418. RemoteSpyPreview.Visible = false
  419.  
  420. Name_4.Name = "Name"
  421. Name_4.Parent = RemoteSpyPreview
  422. Name_4.BackgroundColor3 = Color3.new(1, 1, 1)
  423. Name_4.BackgroundTransparency = 1
  424. Name_4.Size = UDim2.new(0, 292, 0, 61)
  425. Name_4.Text = "RemoteSpy GUI"
  426. Name_4.TextColor3 = Color3.new(1, 1, 1)
  427. Name_4.TextSize = 14
  428.  
  429. RunRemote.Name = "RunRemote"
  430. RunRemote.Parent = RemoteSpyPreview
  431. RunRemote.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  432. RunRemote.BorderColor3 = Color3.new(1, 1, 1)
  433. RunRemote.Position = UDim2.new(0.157534242, 0, 0.778911591, 0)
  434. RunRemote.Size = UDim2.new(0, 200, 0, 50)
  435. RunRemote.Text = "Run Script"
  436. RunRemote.TextColor3 = Color3.new(1, 1, 1)
  437. RunRemote.TextSize = 12
  438. RunRemote.MouseButton1Click:connect(function()
  439. loadstring(game:HttpGet(("https://pastebin.com/raw/CyMniLma"),true))()
  440. end)
  441.  
  442. Info_4.Name = "Info"
  443. Info_4.Parent = RemoteSpyPreview
  444. Info_4.BackgroundColor3 = Color3.new(1, 1, 1)
  445. Info_4.BackgroundTransparency = 1
  446. Info_4.Position = UDim2.new(0.0445205495, 0, 0.227891162, 0)
  447. Info_4.Size = UDim2.new(0, 245, 0, 50)
  448. Info_4.Text = "RemoteSpy GUI for Synapse"
  449. Info_4.TextColor3 = Color3.new(1, 1, 1)
  450. Info_4.TextSize = 11
  451. Info_4.TextXAlignment = Enum.TextXAlignment.Left
  452.  
  453. Logo_2.Name = "Logo"
  454. Logo_2.Parent = ScriptHubMain
  455. Logo_2.BackgroundColor3 = Color3.new(1, 1, 1)
  456. Logo_2.BackgroundTransparency = 2
  457. Logo_2.Size = UDim2.new(0, 251, 0, 56)
  458. Logo_2.Image = "rbxassetid://1505584527"
  459.  
  460. Version_2.Name = "Version"
  461. Version_2.Parent = ScriptHubMain
  462. Version_2.BackgroundColor3 = Color3.new(1, 1, 1)
  463. Version_2.BackgroundTransparency = 1
  464. Version_2.Position = UDim2.new(0.439728349, 0, 0.0361842141, 0)
  465. Version_2.Size = UDim2.new(0, 86, 0, 49)
  466. Version_2.Text = "GUI v1.1"
  467. Version_2.TextColor3 = Color3.new(1, 1, 1)
  468. Version_2.TextSize = 14
  469.  
  470. InfiniteYeildFE.Name = "InfiniteYeildFE"
  471. InfiniteYeildFE.Parent = ScriptHubMain
  472. InfiniteYeildFE.BackgroundColor3 = Color3.new(1, 1, 1)
  473. InfiniteYeildFE.BackgroundTransparency = 1
  474. InfiniteYeildFE.Position = UDim2.new(0.0237690993, 0, 0.197368428, 0)
  475. InfiniteYeildFE.Size = UDim2.new(0, 245, 0, 37)
  476. InfiniteYeildFE.Font = Enum.Font.SourceSans
  477. InfiniteYeildFE.Text = "Infinite Yeild FE"
  478. InfiniteYeildFE.TextColor3 = Color3.new(1, 1, 1)
  479. InfiniteYeildFE.TextSize = 20
  480. InfiniteYeildFE.TextXAlignment = Enum.TextXAlignment.Left
  481. InfiniteYeildFE.MouseButton1Down:connect(function()
  482. DexExplorerPreview.Visible = false
  483. FeAnimationsPreview.Visible = false
  484. RemoteSpyPreview.Visible = false
  485. InfiniteYeildFEPreview.Visible = true
  486. end)
  487.  
  488. Dex.Name = "Dex"
  489. Dex.Parent = ScriptHubMain
  490. Dex.BackgroundColor3 = Color3.new(1, 1, 1)
  491. Dex.BackgroundTransparency = 1
  492. Dex.Position = UDim2.new(0.0237690993, 0, 0.278508782, 0)
  493. Dex.Size = UDim2.new(0, 245, 0, 37)
  494. Dex.Font = Enum.Font.SourceSans
  495. Dex.Text = "Dex Explorer"
  496. Dex.TextColor3 = Color3.new(1, 1, 1)
  497. Dex.TextSize = 20
  498. Dex.TextXAlignment = Enum.TextXAlignment.Left
  499. Dex.MouseButton1Down:connect(function()
  500. DexExplorerPreview.Visible = true
  501. FeAnimationsPreview.Visible = false
  502. RemoteSpyPreview.Visible = false
  503. InfiniteYeildFEPreview.Visible = false
  504. end)
  505.  
  506. FEAnimations.Name = "FEAnimations"
  507. FEAnimations.Parent = ScriptHubMain
  508. FEAnimations.BackgroundColor3 = Color3.new(1, 1, 1)
  509. FEAnimations.BackgroundTransparency = 1
  510. FEAnimations.Position = UDim2.new(0.0237690993, 0, 0.359649122, 0)
  511. FEAnimations.Size = UDim2.new(0, 245, 0, 37)
  512. FEAnimations.Font = Enum.Font.SourceSans
  513. FEAnimations.Text = "FE Animations"
  514. FEAnimations.TextColor3 = Color3.new(1, 1, 1)
  515. FEAnimations.TextSize = 20
  516. FEAnimations.TextXAlignment = Enum.TextXAlignment.Left
  517. FEAnimations.MouseButton1Down:connect(function()
  518. DexExplorerPreview.Visible = false
  519. FeAnimationsPreview.Visible = true
  520. RemoteSpyPreview.Visible = false
  521. InfiniteYeildFEPreview.Visible = false
  522. end)
  523.  
  524. RemoteSpy.Name = "RemoteSpy"
  525. RemoteSpy.Parent = ScriptHubMain
  526. RemoteSpy.BackgroundColor3 = Color3.new(1, 1, 1)
  527. RemoteSpy.BackgroundTransparency = 1
  528. RemoteSpy.Position = UDim2.new(0.0237690993, 0, 0.440789461, 0)
  529. RemoteSpy.Size = UDim2.new(0, 245, 0, 37)
  530. RemoteSpy.Font = Enum.Font.SourceSans
  531. RemoteSpy.Text = "RemoteSpy GUI"
  532. RemoteSpy.TextColor3 = Color3.new(1, 1, 1)
  533. RemoteSpy.TextSize = 20
  534. RemoteSpy.TextXAlignment = Enum.TextXAlignment.Left
  535. RemoteSpy.MouseButton1Down:connect(function()
  536. DexExplorerPreview.Visible = false
  537. FeAnimationsPreview.Visible = false
  538. RemoteSpyPreview.Visible = true
  539. InfiniteYeildFEPreview.Visible = false
  540. end)
  541.  
  542. ComingSoon.Name = "ComingSoon"
  543. ComingSoon.Parent = ScriptHubMain
  544. ComingSoon.BackgroundColor3 = Color3.new(1, 1, 1)
  545. ComingSoon.BackgroundTransparency = 1
  546. ComingSoon.Position = UDim2.new(0.0237690993, 0, 0.653508782, 0)
  547. ComingSoon.Size = UDim2.new(0, 245, 0, 58)
  548. ComingSoon.Font = Enum.Font.SourceSans
  549. ComingSoon.Text = "(Soon I'll make it so you can add your own scripts)"
  550. ComingSoon.TextColor3 = Color3.new(1, 1, 1)
  551. ComingSoon.TextSize = 20
  552. ComingSoon.TextWrapped = true
  553.  
  554. X_2.Name = "X"
  555. X_2.Parent = ScriptHubMain
  556. X_2.BackgroundColor3 = Color3.new(1, 1, 1)
  557. X_2.BackgroundTransparency = 1
  558. X_2.Position = UDim2.new(0.950764, 0, 0, 0)
  559. X_2.Size = UDim2.new(0, 29, 0, 24)
  560. X_2.Font = Enum.Font.SourceSans
  561. X_2.Text = "X"
  562. X_2.TextColor3 = Color3.new(1, 1, 1)
  563. X_2.TextScaled = true
  564. X_2.TextSize = 14
  565. X_2.TextWrapped = true
  566. X_2.MouseButton1Down:connect(function()
  567. ScriptHubMain.Visible = false
  568. end)
  569.  
  570. OpenGUI.Name = "OpenGUI"
  571. OpenGUI.Parent = Synapse
  572. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  573. OpenGUI.Position = UDim2.new(0, 0, 0.890302062, 0)
  574. OpenGUI.Size = UDim2.new(0, 87, 0, 44)
  575. OpenGUI.Visible = false
  576.  
  577. OpenButton.Name = "OpenButton"
  578. OpenButton.Parent = OpenGUI
  579. OpenButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  580. OpenButton.Size = UDim2.new(0, 87, 0, 44)
  581. OpenButton.Font = Enum.Font.SciFi
  582. OpenButton.Text = "Open Synapse"
  583. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  584. OpenButton.TextSize = 13
  585. OpenButton.MouseButton1Down:connect(function()
  586. MainFrame.Visible = true
  587. OpenGUI.Visible = false
  588. end)
  589.  
  590. LoadingScreen.Name = "LoadingScreen"
  591. LoadingScreen.Parent = Synapse
  592. LoadingScreen.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  593. LoadingScreen.Position = UDim2.new(0.5, -250,0.5, -125)
  594. LoadingScreen.Size = UDim2.new(0, 424, 0, 221)
  595.  
  596. Logo_3.Name = "Logo"
  597. Logo_3.Parent = LoadingScreen
  598. Logo_3.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  599. Logo_3.BackgroundTransparency = 1
  600. Logo_3.Position = UDim2.new(0.103773579, 0, 0.0723981932, 0)
  601. Logo_3.Size = UDim2.new(0, 250, 0, 42)
  602. Logo_3.Image = "rbxassetid://1505584527"
  603.  
  604. Logo11.Name = "Logo11"
  605. Logo11.Parent = LoadingScreen
  606. Logo11.BackgroundColor3 = Color3.new(1, 1, 1)
  607. Logo11.BackgroundTransparency = 1
  608. Logo11.Position = UDim2.new(0.627358437, 0, 0.131221727, 0)
  609. Logo11.Size = UDim2.new(0, 114, 0, 29)
  610. Logo11.Font = Enum.Font.SourceSansBold
  611. Logo11.Text = "GUI"
  612. Logo11.TextColor3 = Color3.new(1, 1, 1)
  613. Logo11.TextSize = 20
  614.  
  615. Loading1.Name = "Loading1"
  616. Loading1.Parent = LoadingScreen
  617. Loading1.BackgroundColor3 = Color3.new(1, 1, 1)
  618. Loading1.BackgroundTransparency = 1
  619. Loading1.Position = UDim2.new(0.264150947, 0, 0.737556577, 0)
  620. Loading1.Size = UDim2.new(0, 200, 0, 34)
  621. Loading1.Font = Enum.Font.SourceSansBold
  622. Loading1.Text = "[ Downloading Data... ]"
  623. Loading1.TextColor3 = Color3.new(1, 1, 1)
  624. Loading1.TextSize = 20
  625.  
  626. ScrollingFrame.Parent = LoadingScreen
  627. ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  628. ScrollingFrame.Position = UDim2.new(0.103773586, 0, 0.46606335, 0)
  629. ScrollingFrame.Size = UDim2.new(0, 336, 0, 38)
  630. ScrollingFrame.ScrollBarThickness = 0
  631.  
  632. LoadingBar.Name = "LoadingBar"
  633. LoadingBar.Parent = ScrollingFrame
  634. LoadingBar.BackgroundColor3 = Color3.new(0.0627451, 0.639216, 0)
  635. LoadingBar.BorderSizePixel = 0
  636. LoadingBar.Position = UDim2.new(-1, 0, 0, 0)
  637. LoadingBar.Size = UDim2.new(0, 336, 0, 38)
  638. -- Scripts:
  639. function SCRIPT_THUB68_FAKESCRIPT() -- _.LocalScript
  640. getfenv().script = Instance.new('LocalScript', _)
  641.  
  642. script.Parent.MouseButton1Down:connect(function()
  643. script.Parent.Parent.Visible = false
  644. script.Parent.Parent.Parent.OpenGUI.Visible = true
  645. end)
  646.  
  647. end
  648. coroutine.resume(coroutine.create(SCRIPT_THUB68_FAKESCRIPT))
  649. function SCRIPT_SFQR82_FAKESCRIPT() -- X.LocalScript
  650. getfenv().script = Instance.new('LocalScript', X)
  651.  
  652. script.Parent.MouseButton1Down:connect(function()
  653. script.Parent.Parent:Destroy()
  654. end)
  655.  
  656. end
  657. coroutine.resume(coroutine.create(SCRIPT_SFQR82_FAKESCRIPT))
  658. function SCRIPT_PICT75_FAKESCRIPT() -- ScriptHubButton.LocalScript
  659. getfenv().script = Instance.new('LocalScript', ScriptHubButton)
  660.  
  661. script.Parent.MouseButton1Down:connect(function()
  662. script.Parent.Parent.Parent.Parent.ScriptHubMain.Visible = true
  663. end)
  664.  
  665. end
  666. coroutine.resume(coroutine.create(SCRIPT_PICT75_FAKESCRIPT))
  667. function SCRIPT_TFPZ85_FAKESCRIPT() -- ChangeThemeButton.LocalScript
  668. getfenv().script = Instance.new('LocalScript', ChangeThemeButton)
  669.  
  670. script.Parent.MouseButton1Down:connect(function()
  671. script.Parent.Text = "Coming Soon!"
  672. wait(5)
  673. script.Parent.Text = "Change Theme"
  674. end)
  675.  
  676. end
  677. coroutine.resume(coroutine.create(SCRIPT_TFPZ85_FAKESCRIPT))
  678. function SCRIPT_SAMZ90_FAKESCRIPT() -- TestButton.LocalScript
  679. getfenv().script = Instance.new('LocalScript', TestButton)
  680.  
  681. script.MouseButton1Down:connect(function()
  682.  
  683. end)
  684.  
  685. end
  686. coroutine.resume(coroutine.create(SCRIPT_SAMZ90_FAKESCRIPT))
  687. function SCRIPT_XEUL76_FAKESCRIPT() -- MainFrame.LocalScript
  688. getfenv().script = Instance.new('LocalScript', MainFrame)
  689.  
  690. script.Parent.Draggable = true
  691.  
  692. end
  693. coroutine.resume(coroutine.create(SCRIPT_XEUL76_FAKESCRIPT))
  694. function SCRIPT_YZFG78_FAKESCRIPT() -- X_2.LocalScript
  695. getfenv().script = Instance.new('LocalScript', X_2)
  696.  
  697. script.Parent.MouseButton1Down:connect(function()
  698. script.Parent.Parent.Visible = false
  699. end)
  700.  
  701. end
  702. coroutine.resume(coroutine.create(SCRIPT_YZFG78_FAKESCRIPT))
  703. function SCRIPT_JJIS76_FAKESCRIPT() -- OpenButton.LocalScript
  704. getfenv().script = Instance.new('LocalScript', OpenButton)
  705.  
  706. script.Parent.MouseButton1Down:connect(function()
  707. script.Parent.Parent.Parent.MainFrame.Visible = true
  708. script.Parent.Parent.Visible = false
  709. end)
  710.  
  711. end
  712. coroutine.resume(coroutine.create(SCRIPT_JJIS76_FAKESCRIPT))
  713. function SCRIPT_EXHE82_FAKESCRIPT() -- LoadingBar.LocalScript
  714. getfenv().script = Instance.new('LocalScript', LoadingBar)
  715.  
  716. script.Parent:TweenPosition(UDim2.new(-0.616, 0,0, 0), "Out", "Linear", 2, true)
  717. wait(3)
  718. script.Parent.Parent.Parent.Loading1.Text = "[ Verifying Data... ]"
  719. script.Parent:TweenPosition(UDim2.new(-0.229, 0,0, 0), "Out", "Linear", 2, true)
  720. wait(3)
  721. script.Parent.Parent.Parent.Loading1.Text = "[ Preparing... ]"
  722. script.Parent:TweenPosition(UDim2.new(-0, 0,0, 0), "Out", "Linear", 2, true)
  723. wait(3)
  724. script.Parent.Parent.Parent.Loading1.Text = "[ Loaded! ]"
  725. wait(1)
  726. script.Parent.Parent.Parent.Visible = false
  727. script.Parent.Parent.Parent.Parent.MainFrame.Visible = true
  728.  
  729.  
  730.  
  731. end
  732. coroutine.resume(coroutine.create(SCRIPT_EXHE82_FAKESCRIPT))
  733.  
  734. -- End of script
Add Comment
Please, Sign In to add comment