Advertisement
Guest User

asasasasa

a guest
Nov 15th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.51 KB | None | 0 0
  1. -- synapse x gui by robloxfan77 aka pieslolV2
  2. -- Instances:
  3. local SynapseX = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local sxlogo = Instance.new("ImageLabel")
  6. local Text = Instance.new("TextLabel")
  7. local exebut = Instance.new("TextButton")
  8. local clearbut = Instance.new("TextButton")
  9. local openbut = Instance.new("TextButton")
  10. local exefbut = Instance.new("TextButton")
  11. local savebut = Instance.new("TextButton")
  12. local injectbut = Instance.new("TextButton")
  13. local scriptbox = Instance.new("Frame")
  14. local ScrollingFrame = Instance.new("ScrollingFrame")
  15. local ScriptBox = Instance.new("TextBox")
  16. local injectbut_2 = Instance.new("TextButton")
  17. --Properties:
  18. SynapseX.Name = "SynapseX"
  19. SynapseX.Parent = game.CoreGui
  20.  
  21. main.Name = "main"
  22. main.Parent = SynapseX
  23. main.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  24. main.BorderSizePixel = 0
  25. main.Position = UDim2.new(0.50444448, 0, 0.18189238, 0)
  26. main.Size = UDim2.new(0, 758, 0, 353)
  27. main.Active = true
  28. main.Selectable = true
  29. main.Draggable = true
  30.  
  31. sxlogo.Name = "sxlogo"
  32. sxlogo.Parent = main
  33. sxlogo.BackgroundColor3 = Color3.new(0, 0, 0)
  34. sxlogo.BackgroundTransparency = 100
  35. sxlogo.BorderSizePixel = 0
  36. sxlogo.Size = UDim2.new(0, 35, 0, 32)
  37. sxlogo.Image = "rbxassetid://2513818589"
  38.  
  39. Text.Name = "Text"
  40. Text.Parent = main
  41. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Text.BackgroundTransparency = 1
  43. Text.BorderSizePixel = 0
  44. Text.Position = UDim2.new(0.374670208, 0, -0.0254957508, 0)
  45. Text.Size = UDim2.new(0, 200, 0, 50)
  46. Text.Font = Enum.Font.SourceSans
  47. Text.Text = "Synapse X pre-v1.0.0"
  48. Text.TextColor3 = Color3.new(1, 1, 1)
  49. Text.TextSize = 14
  50.  
  51. exebut.Name = "exebut"
  52. exebut.Parent = main
  53. exebut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  54. exebut.BorderSizePixel = 0
  55. exebut.Position = UDim2.new(0.00923482887, 0, 0.892351449, 0)
  56. exebut.Size = UDim2.new(0, 82, 0, 32)
  57. exebut.Font = Enum.Font.SourceSans
  58. exebut.Text = "Execute"
  59. exebut.TextColor3 = Color3.new(1, 1, 1)
  60. exebut.TextSize = 14
  61. exebut.MouseButton1Down:connect(function()
  62. loadstring(ScriptBox.Text)()
  63. end)
  64.  
  65. clearbut.Name = "clearbut"
  66. clearbut.Parent = main
  67. clearbut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  68. clearbut.BorderSizePixel = 0
  69. clearbut.Position = UDim2.new(0.13060686, 0, 0.892351449, 0)
  70. clearbut.Size = UDim2.new(0, 82, 0, 32)
  71. clearbut.Font = Enum.Font.SourceSans
  72. clearbut.Text = "Clear"
  73. clearbut.TextColor3 = Color3.new(1, 1, 1)
  74. clearbut.TextSize = 14
  75. clearbut.MouseButton1Down:connect(function()
  76. ScriptBox.Text = ""
  77. end)
  78.  
  79. openbut.Name = "openbut"
  80. openbut.Parent = main
  81. openbut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  82. openbut.BorderSizePixel = 0
  83. openbut.Position = UDim2.new(0.250659645, 0, 0.892351449, 0)
  84. openbut.Size = UDim2.new(0, 82, 0, 32)
  85. openbut.Font = Enum.Font.SourceSans
  86. openbut.Text = "Open File"
  87. openbut.TextColor3 = Color3.new(1, 1, 1)
  88. openbut.TextSize = 14
  89.  
  90. exefbut.Name = "exefbut"
  91. exefbut.Parent = main
  92. exefbut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  93. exefbut.BorderSizePixel = 0
  94. exefbut.Position = UDim2.new(0.374670178, 0, 0.892351449, 0)
  95. exefbut.Size = UDim2.new(0, 82, 0, 32)
  96. exefbut.Font = Enum.Font.SourceSans
  97. exefbut.Text = "Execute File"
  98. exefbut.TextColor3 = Color3.new(1, 1, 1)
  99. exefbut.TextSize = 14
  100.  
  101. savebut.Name = "savebut"
  102. savebut.Parent = main
  103. savebut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  104. savebut.BorderSizePixel = 0
  105. savebut.Position = UDim2.new(0.496042222, 0, 0.892351449, 0)
  106. savebut.Size = UDim2.new(0, 82, 0, 32)
  107. savebut.Font = Enum.Font.SourceSans
  108. savebut.Text = "Save File"
  109. savebut.TextColor3 = Color3.new(1, 1, 1)
  110. savebut.TextSize = 14
  111.  
  112. injectbut.Name = "injectbut"
  113. injectbut.Parent = main
  114. injectbut.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  115. injectbut.BorderSizePixel = 0
  116. injectbut.Position = UDim2.new(0.812664866, 0, 0.892351449, 0)
  117. injectbut.Size = UDim2.new(0, 82, 0, 32)
  118. injectbut.Font = Enum.Font.SourceSans
  119. injectbut.Text = "Attach"
  120. injectbut.TextColor3 = Color3.new(1, 1, 1)
  121. injectbut.TextSize = 14
  122.  
  123. scriptbox.Name = "scriptbox"
  124. scriptbox.Parent = main
  125. scriptbox.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  126. scriptbox.BorderSizePixel = 0
  127. scriptbox.Position = UDim2.new(0.812680721, 0, 0.115999997, 0)
  128. scriptbox.Size = UDim2.new(0, 116, 0, 264)
  129.  
  130. ScrollingFrame.Parent = main
  131. ScrollingFrame.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  132. ScrollingFrame.BorderSizePixel = 0
  133. ScrollingFrame.Position = UDim2.new(0.0145118739, 0, 0.11331445, 0)
  134. ScrollingFrame.Size = UDim2.new(0, 586, 0, 264)
  135. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10000, 0)
  136.  
  137. ScriptBox.Name = "ScriptBox"
  138. ScriptBox.Parent = ScrollingFrame
  139. ScriptBox.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  140. ScriptBox.BorderColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  141. ScriptBox.Size = UDim2.new(0, 569, 0, 264)
  142. ScriptBox.Font = Enum.Font.SourceSans
  143. ScriptBox.Text = "Script Here"
  144. ScriptBox.TextColor3 = Color3.new(1, 1, 1)
  145. ScriptBox.TextSize = 14
  146. ScriptBox.TextXAlignment = Enum.TextXAlignment.Left
  147. ScriptBox.TextYAlignment = Enum.TextYAlignment.Top
  148.  
  149. injectbut_2.Name = "injectbut"
  150. injectbut_2.Parent = main
  151. injectbut_2.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  152. injectbut_2.BorderSizePixel = 0
  153. injectbut_2.Position = UDim2.new(0.679419518, 0, 0.892351449, 0)
  154. injectbut_2.Size = UDim2.new(0, 82, 0, 32)
  155. injectbut_2.Font = Enum.Font.SourceSans
  156. injectbut_2.Text = "Script Hub"
  157. injectbut_2.TextColor3 = Color3.new(1, 1, 1)
  158. injectbut_2.TextSize = 14
  159. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement