Advertisement
Guest User

Astrox Server Side Executor

a guest
May 22nd, 2024
1,780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.36 KB | None | 0 0
  1. local Executor = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local ExecGuiV2ShadowLabel = Instance.new("TextLabel")
  4. local Scroll = Instance.new("ScrollingFrame")
  5. local CodeBox = Instance.new("TextBox")
  6. local Execute = Instance.new("TextButton")
  7. local Clear = Instance.new("TextButton")
  8. local HideCodeLabel = Instance.new("TextLabel")
  9. local HideCodeBox = Instance.new("TextButton")
  10. local ExecGuiV2Label = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local QE = Instance.new("TextButton")
  13. local Quick = Instance.new("Frame")
  14. local Side = Instance.new("Frame")
  15. local Maps = Instance.new("TextButton")
  16. local Titans = Instance.new("TextButton")
  17. local Scripts = Instance.new("TextButton")
  18. local Maps_2 = Instance.new("Frame")
  19. local KFC = Instance.new("TextButton")
  20. --Properties:
  21. Executor.Name = "Executor"
  22. Executor.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  23. Executor.ResetOnSpawn = false
  24.  
  25. Main.Name = "Main"
  26. Main.Parent = Executor
  27. Main.Active = true
  28. Main.BackgroundColor3 = Color3.new(0.529412, 0.529412, 0.529412)
  29. Main.BorderSizePixel = 0
  30. Main.Position = UDim2.new(0.0214220583, 0, 0.467940927, 0)
  31. Main.Size = UDim2.new(0.376690984, 0, 0.278626025, 0)
  32.  
  33. ExecGuiV2ShadowLabel.Name = "ExecGuiV2ShadowLabel"
  34. ExecGuiV2ShadowLabel.Parent = Main
  35. ExecGuiV2ShadowLabel.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  36. ExecGuiV2ShadowLabel.BorderColor3 = Color3.new(0.666667, 1, 1)
  37. ExecGuiV2ShadowLabel.BorderSizePixel = 0
  38. ExecGuiV2ShadowLabel.Position = UDim2.new(0, 0, 0.127103388, 0)
  39. ExecGuiV2ShadowLabel.Size = UDim2.new(1, 0, 0.076127328, 0)
  40. ExecGuiV2ShadowLabel.Font = Enum.Font.SourceSansLight
  41. ExecGuiV2ShadowLabel.Text = ""
  42. ExecGuiV2ShadowLabel.TextColor3 = Color3.new(1, 1, 1)
  43. ExecGuiV2ShadowLabel.TextScaled = true
  44. ExecGuiV2ShadowLabel.TextSize = 20
  45. ExecGuiV2ShadowLabel.TextWrapped = true
  46.  
  47. Scroll.Name = "Scroll"
  48. Scroll.Parent = Main
  49. Scroll.BackgroundColor3 = Color3.new(0.796079, 0.513726, 0.164706)
  50. Scroll.BackgroundTransparency = 0.69999998807907
  51. Scroll.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  52. Scroll.BorderSizePixel = 2
  53. Scroll.Position = UDim2.new(0.0166438818, 0, 0.203230724, 0)
  54. Scroll.Size = UDim2.new(0.961256504, 0, 0.638848126, 0)
  55. Scroll.ScrollBarThickness = 5
  56.  
  57. CodeBox.Name = "CodeBox"
  58. CodeBox.Parent = Scroll
  59. CodeBox.BackgroundColor3 = Color3.new(0, 0, 0)
  60. CodeBox.BackgroundTransparency = 1
  61. CodeBox.BorderSizePixel = 0
  62. CodeBox.Position = UDim2.new(0.0158930533, 0, -4.9078443e-07, 0)
  63. CodeBox.Size = UDim2.new(0.957883418, 0, 10.1010714, 0)
  64. CodeBox.ClearTextOnFocus = false
  65. CodeBox.Font = Enum.Font.SourceSansLight
  66. CodeBox.MultiLine = true
  67. CodeBox.PlaceholderColor3 = Color3.new(1, 1, 1)
  68. CodeBox.PlaceholderText = "Require here"
  69. CodeBox.Text = ""
  70. CodeBox.TextColor3 = Color3.new(1, 1, 1)
  71. CodeBox.TextSize = 18
  72. CodeBox.TextWrapped = true
  73. CodeBox.TextXAlignment = Enum.TextXAlignment.Left
  74. CodeBox.TextYAlignment = Enum.TextYAlignment.Top
  75.  
  76. Execute.Name = "Execute"
  77. Execute.Parent = Main
  78. Execute.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  79. Execute.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  80. Execute.BorderSizePixel = 2
  81. Execute.Position = UDim2.new(0.0166438818, 0, 0.851975858, 0)
  82. Execute.Size = UDim2.new(0.185082927, 0, 0.133825406, 0)
  83. Execute.Font = Enum.Font.SciFi
  84. Execute.Text = "Execute"
  85. Execute.TextColor3 = Color3.new(0.666667, 1, 1)
  86. Execute.TextScaled = true
  87. Execute.TextSize = 18
  88. Execute.TextStrokeColor3 = Color3.new(0.666667, 1, 1)
  89. Execute.TextWrapped = true
  90.  
  91. Clear.Name = "Clear"
  92. Clear.Parent = Main
  93. Clear.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  94. Clear.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  95. Clear.BorderSizePixel = 2
  96. Clear.Position = UDim2.new(0.229436591, 0, 0.858825207, 0)
  97. Clear.Size = UDim2.new(0.157458708, 0, 0.120126776, 0)
  98. Clear.Font = Enum.Font.SciFi
  99. Clear.Text = "Clear"
  100. Clear.TextColor3 = Color3.new(0.666667, 1, 1)
  101. Clear.TextScaled = true
  102. Clear.TextSize = 18
  103. Clear.TextWrapped = true
  104.  
  105. HideCodeLabel.Name = "HideCodeLabel"
  106. HideCodeLabel.Parent = Main
  107. HideCodeLabel.BackgroundColor3 = Color3.new(0.0156863, 0.0156863, 0.0156863)
  108. HideCodeLabel.BackgroundTransparency = 1
  109. HideCodeLabel.BorderColor3 = Color3.new(0, 0, 0)
  110. HideCodeLabel.BorderSizePixel = 0
  111. HideCodeLabel.Position = UDim2.new(0.748303592, 0, 0.842078984, 0)
  112. HideCodeLabel.Size = UDim2.new(0.168823421, 0, 0.157920912, 0)
  113. HideCodeLabel.Font = Enum.Font.SciFi
  114. HideCodeLabel.Text = "Hide Require"
  115. HideCodeLabel.TextColor3 = Color3.new(0, 0, 0)
  116. HideCodeLabel.TextScaled = true
  117. HideCodeLabel.TextSize = 18
  118. HideCodeLabel.TextStrokeColor3 = Color3.new(0.666667, 1, 1)
  119. HideCodeLabel.TextWrapped = true
  120.  
  121. HideCodeBox.Name = "HideCodeBox"
  122. HideCodeBox.Parent = Main
  123. HideCodeBox.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  124. HideCodeBox.BorderColor3 = Color3.new(0.380392, 0.552941, 0.827451)
  125. HideCodeBox.BorderSizePixel = 3
  126. HideCodeBox.Position = UDim2.new(0.942754149, 0, 0.851975858, 0)
  127. HideCodeBox.Size = UDim2.new(0.0517208874, 0, 0.126976073, 0)
  128. HideCodeBox.Font = Enum.Font.SourceSansLight
  129. HideCodeBox.Text = ""
  130. HideCodeBox.TextColor3 = Color3.new(0.666667, 1, 1)
  131. HideCodeBox.TextScaled = true
  132. HideCodeBox.TextSize = 14
  133. HideCodeBox.TextWrapped = true
  134.  
  135. ExecGuiV2Label.Name = "ExecGuiV2Label"
  136. ExecGuiV2Label.Parent = Main
  137. ExecGuiV2Label.Active = true
  138. ExecGuiV2Label.BackgroundColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  139. ExecGuiV2Label.BorderSizePixel = 0
  140. ExecGuiV2Label.Position = UDim2.new(0, 0, 1.04512232e-07, 0)
  141. ExecGuiV2Label.Size = UDim2.new(0.999999821, 0, 0.127103299, 0)
  142. ExecGuiV2Label.Font = Enum.Font.GothamSemibold
  143. ExecGuiV2Label.Text = "Astrox Server Side Executor"
  144. ExecGuiV2Label.TextColor3 = Color3.new(1, 1, 1)
  145. ExecGuiV2Label.TextScaled = true
  146. ExecGuiV2Label.TextSize = 20
  147. ExecGuiV2Label.TextWrapped = true
  148.  
  149. Close.Name = "Close"
  150. Close.Parent = Main
  151. Close.BackgroundColor3 = Color3.new(0.658824, 0.423529, 0.458824)
  152. Close.BackgroundTransparency = 1
  153. Close.BorderSizePixel = 0
  154. Close.Position = UDim2.new(0.941988945, 0, -0.00684905052, 0)
  155. Close.Size = UDim2.new(0, 19, 0, 19)
  156. Close.Font = Enum.Font.SciFi
  157. Close.Text = "X"
  158. Close.TextColor3 = Color3.new(1, 1, 1)
  159. Close.TextScaled = true
  160. Close.TextSize = 14
  161. Close.TextWrapped = true
  162.  
  163. QE.Name = "QE"
  164. QE.Parent = Main
  165. QE.BackgroundColor3 = Color3.new(0.658824, 0.423529, 0.458824)
  166. QE.BackgroundTransparency = 1
  167. QE.BorderSizePixel = 0
  168. QE.Position = UDim2.new(0.0165746808, 0, -0.00684905052, 0)
  169. QE.Size = UDim2.new(0, 19, 0, 19)
  170. QE.Font = Enum.Font.SciFi
  171. QE.Text = "QE"
  172. QE.TextColor3 = Color3.new(1, 1, 1)
  173. QE.TextScaled = true
  174. QE.TextSize = 14
  175. QE.TextWrapped = true
  176.  
  177. Quick.Name = "Quick"
  178. Quick.Parent = Executor
  179. Quick.Active = true
  180. Quick.BackgroundColor3 = Color3.new(0.529412, 0.529412, 0.529412)
  181. Quick.Position = UDim2.new(0.0208116621, 0, 0.211832061, 0)
  182. Quick.Size = UDim2.new(0.301768959, 0, 0.23854959, 0)
  183.  
  184. Side.Name = "Side"
  185. Side.Parent = Quick
  186. Side.Active = true
  187. Side.BackgroundColor3 = Color3.new(0.529412, 0.529412, 0.529412)
  188. Side.Position = UDim2.new(0.996321976, 0, 0, 0)
  189. Side.Size = UDim2.new(0.254942745, 0, 0.999999702, 0)
  190.  
  191. Maps.Name = "Maps"
  192. Maps.Parent = Side
  193. Maps.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  194. Maps.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  195. Maps.BorderSizePixel = 0
  196. Maps.Position = UDim2.new(0.0550042503, 0, 0.048000019, 0)
  197. Maps.Size = UDim2.new(0.873578489, 0, 0.17095162, 0)
  198. Maps.Font = Enum.Font.SciFi
  199. Maps.Text = "Maps"
  200. Maps.TextColor3 = Color3.new(0.666667, 1, 1)
  201. Maps.TextScaled = true
  202. Maps.TextSize = 18
  203. Maps.TextWrapped = true
  204.  
  205. Titans.Name = "Titans"
  206. Titans.Parent = Side
  207. Titans.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  208. Titans.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  209. Titans.BorderSizePixel = 0
  210. Titans.Position = UDim2.new(0.0550042503, 0, 0.288000107, 0)
  211. Titans.Size = UDim2.new(0.873578489, 0, 0.17095162, 0)
  212. Titans.Font = Enum.Font.SciFi
  213. Titans.Text = "Chars"
  214. Titans.TextColor3 = Color3.new(0.666667, 1, 1)
  215. Titans.TextScaled = true
  216. Titans.TextSize = 18
  217. Titans.TextWrapped = true
  218.  
  219. Scripts.Name = "Scripts"
  220. Scripts.Parent = Side
  221. Scripts.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  222. Scripts.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  223. Scripts.BorderSizePixel = 0
  224. Scripts.Position = UDim2.new(0.0550042503, 0, 0.528000236, 0)
  225. Scripts.Size = UDim2.new(0.873578489, 0, 0.17095162, 0)
  226. Scripts.Font = Enum.Font.SciFi
  227. Scripts.Text = "Scripts"
  228. Scripts.TextColor3 = Color3.new(0.666667, 1, 1)
  229. Scripts.TextScaled = true
  230. Scripts.TextSize = 18
  231. Scripts.TextWrapped = true
  232.  
  233. Maps_2.Name = "Maps"
  234. Maps_2.Parent = Quick
  235. Maps_2.Active = true
  236. Maps_2.BackgroundColor3 = Color3.new(0.317647, 0.317647, 0.317647)
  237. Maps_2.BackgroundTransparency = 0.30000001192093
  238. Maps_2.Position = UDim2.new(0.0208116751, 0, 0.0480001271, 0)
  239. Maps_2.Size = UDim2.new(0.939700127, 0, 0.887999833, 0)
  240.  
  241. KFC.Name = "KFC"
  242. KFC.Parent = Maps_2
  243. KFC.BackgroundColor3 = Color3.new(0.909804, 0.537255, 0.164706)
  244. KFC.BorderColor3 = Color3.new(0.27451, 0.596078, 0.686275)
  245. KFC.BorderSizePixel = 0
  246. KFC.Position = UDim2.new(0.0256478339, 0, 0.0570090525, 0)
  247. KFC.Size = UDim2.new(0.19297035, 0, 0.33311379, 0)
  248. KFC.Font = Enum.Font.SciFi
  249. KFC.Text = "KFC"
  250. KFC.TextColor3 = Color3.new(0.666667, 1, 1)
  251. KFC.TextScaled = true
  252. KFC.TextSize = 18
  253. KFC.TextWrapped = true
  254. -- Scripts:
  255. function SCRIPT_OMUC66_FAKESCRIPT() -- Main.Handle
  256. local script = Instance.new('LocalScript')
  257. script.Parent = Main
  258. local Hiding = false
  259. local close = false
  260. script.Parent.Draggable = true
  261. script.Parent.Close.MouseButton1Down:Connect(function()
  262. if close == false then
  263. close = true
  264. script.Parent.Clear.Visible = false
  265. script.Parent.Execute.Visible = false
  266. script.Parent.HideCodeBox.Visible = false
  267. script.Parent.HideCodeLabel.Visible = false
  268. script.Parent.Scroll.Visible = false
  269. script.Parent.ExecGuiV2ShadowLabel.Visible = false
  270. script.Parent.BackgroundTransparency = 1
  271. script.Parent.Close.Text = "-"
  272. else
  273. close = false
  274. script.Parent.Clear.Visible = true
  275. script.Parent.Execute.Visible = true
  276. script.Parent.HideCodeBox.Visible = true
  277. script.Parent.HideCodeLabel.Visible = true
  278. script.Parent.Scroll.Visible = true
  279. script.Parent.ExecGuiV2ShadowLabel.Visible = true
  280. script.Parent.BackgroundTransparency = 0
  281. script.Parent.Close.Text = "+"
  282. end
  283.  
  284. end)
  285. script.Parent.Execute.MouseButton1Down:Connect(function()
  286. script.Parent.Parent.Remote:FireServer(script.Parent.Scroll.CodeBox.Text)
  287. end)
  288. script.Parent.HideCodeBox.MouseButton1Down:Connect(function()
  289. if Hiding == false then
  290. script.Parent.HideCodeBox.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  291. for i=1,10 do
  292. script.Parent.Scroll.CodeBox.TextTransparency = (i/10)
  293. wait()
  294. end
  295. Hiding = true
  296. elseif Hiding == true then
  297. Hiding = false
  298. script.Parent.HideCodeBox.BackgroundColor3 = Color3.fromRGB(49,49,49)
  299. for i=1,10 do
  300. script.Parent.Scroll.CodeBox.TextTransparency = 1-(i/10)
  301. wait()
  302. end
  303. end
  304. end)
  305. script.Parent.Clear.MouseButton1Down:Connect(function()
  306. script.Parent.Scroll.CodeBox.Text = ""
  307. end)
  308.  
  309. script.Parent.Run.MouseButton1Down:Connect(function()
  310. script.Parent.Parent.Remote:FireServer('require('.. tonumber(script.Parent.Load.Text) ..').load('.. _G.test ..')')
  311. end)
  312.  
  313. local clickshowing = false
  314. script.Parent.QE.MouseButton1Down:Connect(function()
  315. if clickshowing == false then
  316. script.Parent.Parent.Quick.Visible = true
  317. clickshowing = true
  318. else
  319. script.Parent.Parent.Quick.Visible = false
  320. clickshowing = false
  321. end
  322. end)
  323.  
  324. end
  325. coroutine.resume(coroutine.create(SCRIPT_OMUC66_FAKESCRIPT))
  326. function SCRIPT_WSGB90_FAKESCRIPT() -- Executor.RemoteHandle
  327. local script = Instance.new('Script')
  328. script.Parent = Executor
  329. script.Parent.Remote.OnServerEvent:Connect(function(wow,yes)
  330. loadstring=require(script.Loadstring)
  331. loadstring(yes)()
  332. end)
  333.  
  334. end
  335. coroutine.resume(coroutine.create(SCRIPT_WSGB90_FAKESCRIPT))
  336. function SCRIPT_LTPW87_FAKESCRIPT() -- Quick.Handle
  337. local script = Instance.new('LocalScript')
  338. script.Parent = Quick
  339. script.Parent.Draggable = true
  340.  
  341. script.Parent.Side.Maps.MouseButton1Down:Connect(function()
  342. script.Parent.Maps.Visible = true
  343. end)
  344.  
  345. script.Parent.Maps.KFC.MouseButton1Down:Connect((function()
  346. script.Parent.Parent.Remote:FireServer('require(3124362032).load("")')
  347. end))
  348.  
  349. end
  350. coroutine.resume(coroutine.create(SCRIPT_LTPW87_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement