Advertisement
Oscar55555

Untitled

Mar 2nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.25 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. -- Farewell Infortality.
  153. -- Version: 2.82
  154. -- Instances:
  155. local AdminGui = Instance.new("ScreenGui")
  156. local Frame1 = Instance.new("Frame")
  157. local CloseGui = Instance.new("TextButton")
  158. local OpenSettings = Instance.new("TextButton")
  159. local Kill = Instance.new("TextButton")
  160. local Punish = Instance.new("TextButton")
  161. local UnPunish = Instance.new("TextButton")
  162. local CloseSettings = Instance.new("TextButton")
  163. local Lag = Instance.new("TextButton")
  164. local God = Instance.new("TextButton")
  165. local UnGod = Instance.new("TextButton")
  166. local Next = Instance.new("TextButton")
  167. local Number = Instance.new("TextLabel")
  168. local Frame2 = Instance.new("Frame")
  169. local CloseGui_2 = Instance.new("TextButton")
  170. local Invisible = Instance.new("TextButton")
  171. local Number_2 = Instance.new("TextLabel")
  172. local Back = Instance.new("TextButton")
  173. local Next_2 = Instance.new("TextButton")
  174. local Visible = Instance.new("TextButton")
  175. local Freeze = Instance.new("TextButton")
  176. local UnFreeze = Instance.new("TextButton")
  177. local ForceField = Instance.new("TextButton")
  178. local UnForceField = Instance.new("TextButton")
  179. local OpenSettings_2 = Instance.new("TextButton")
  180. local CloseSettings_2 = Instance.new("TextButton")
  181. local OpenGui = Instance.new("Frame")
  182. local TextButton = Instance.new("TextButton")
  183. local Settings = Instance.new("Frame")
  184. local PersonBox = Instance.new("TextBox")
  185. local Frame3 = Instance.new("Frame")
  186. local CloseGui_3 = Instance.new("TextButton")
  187. local Kick = Instance.new("TextButton")
  188. local Number_3 = Instance.new("TextLabel")
  189. local Back_2 = Instance.new("TextButton")
  190. local Next_3 = Instance.new("TextButton")
  191. local KickAll = Instance.new("TextButton")
  192. local KillAll = Instance.new("TextButton")
  193. local ExplodeAll = Instance.new("TextButton")
  194. local KohlsAdmin = Instance.new("TextButton")
  195. local WarHammer = Instance.new("TextButton")
  196. local CloseSettings_3 = Instance.new("TextButton")
  197. local OpenSettings_3 = Instance.new("TextButton")
  198. local Frame4 = Instance.new("Frame")
  199. local CloseGui_4 = Instance.new("TextButton")
  200. local AtlasSword = Instance.new("TextButton")
  201. local Number_4 = Instance.new("TextLabel")
  202. local Back_3 = Instance.new("TextButton")
  203. local Next_4 = Instance.new("TextButton")
  204. local ScriptExecutor = Instance.new("TextButton")
  205. local BronyAdmin = Instance.new("TextButton")
  206. local Spike = Instance.new("TextButton")
  207. local SpiderBot = Instance.new("TextButton")
  208. local _5tr0b3Gun = Instance.new("TextButton")
  209. local CloseSettings_4 = Instance.new("TextButton")
  210. local OpenSettings_4 = Instance.new("TextButton")
  211. --Properties:
  212. AdminGui.Name = "AdminGui"
  213. AdminGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  214.  
  215. Frame1.Name = "Frame1"
  216. Frame1.Parent = AdminGui
  217. Frame1.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00784314)
  218. Frame1.BackgroundTransparency = 0.40000000596046
  219. Frame1.BorderColor3 = Color3.new(0, 0, 1)
  220. Frame1.BorderSizePixel = 5
  221. Frame1.Position = UDim2.new(0, 10, 0, 163)
  222. Frame1.Size = UDim2.new(0, 160, 0, 355)
  223. Frame1.Visible = false
  224.  
  225. CloseGui.Name = "CloseGui"
  226. CloseGui.Parent = Frame1
  227. CloseGui.BackgroundColor3 = Color3.new(0, 0, 0)
  228. CloseGui.BackgroundTransparency = 0.60000002384186
  229. CloseGui.BorderColor3 = Color3.new(0, 0, 1)
  230. CloseGui.BorderSizePixel = 3
  231. CloseGui.Position = UDim2.new(0, 30, 0, 315)
  232. CloseGui.Size = UDim2.new(0, 95, 0, 30)
  233. CloseGui.Font = Enum.Font.SourceSans
  234. CloseGui.Text = "Close"
  235. CloseGui.TextColor3 = Color3.new(1, 1, 1)
  236. CloseGui.TextSize = 14
  237.  
  238. OpenSettings.Name = "OpenSettings"
  239. OpenSettings.Parent = Frame1
  240. OpenSettings.BackgroundColor3 = Color3.new(0, 0, 0)
  241. OpenSettings.BackgroundTransparency = 0.60000002384186
  242. OpenSettings.BorderColor3 = Color3.new(0, 0, 1)
  243. OpenSettings.BorderSizePixel = 3
  244. OpenSettings.Position = UDim2.new(0, 30, 0, 275)
  245. OpenSettings.Size = UDim2.new(0, 95, 0, 30)
  246. OpenSettings.Visible = false
  247. OpenSettings.Font = Enum.Font.SourceSans
  248. OpenSettings.Text = "Open Settings"
  249. OpenSettings.TextColor3 = Color3.new(1, 1, 1)
  250. OpenSettings.TextSize = 14
  251.  
  252. Kill.Name = "Kill"
  253. Kill.Parent = Frame1
  254. Kill.BackgroundColor3 = Color3.new(0, 0, 0)
  255. Kill.BackgroundTransparency = 0.60000002384186
  256. Kill.BorderColor3 = Color3.new(0, 0, 1)
  257. Kill.BorderSizePixel = 3
  258. Kill.Position = UDim2.new(0, 30, 0, 15)
  259. Kill.Size = UDim2.new(0, 95, 0, 30)
  260. Kill.Font = Enum.Font.SourceSans
  261. Kill.Text = "Kill"
  262. Kill.TextColor3 = Color3.new(1, 1, 1)
  263. Kill.TextSize = 14
  264.  
  265. Punish.Name = "Punish"
  266. Punish.Parent = Frame1
  267. Punish.BackgroundColor3 = Color3.new(0, 0, 0)
  268. Punish.BackgroundTransparency = 0.60000002384186
  269. Punish.BorderColor3 = Color3.new(0, 0, 1)
  270. Punish.BorderSizePixel = 3
  271. Punish.Position = UDim2.new(0, 30, 0, 55)
  272. Punish.Size = UDim2.new(0, 95, 0, 30)
  273. Punish.Font = Enum.Font.SourceSans
  274. Punish.Text = "Punish"
  275. Punish.TextColor3 = Color3.new(1, 1, 1)
  276. Punish.TextSize = 14
  277.  
  278. UnPunish.Name = "UnPunish"
  279. UnPunish.Parent = Frame1
  280. UnPunish.BackgroundColor3 = Color3.new(0, 0, 0)
  281. UnPunish.BackgroundTransparency = 0.60000002384186
  282. UnPunish.BorderColor3 = Color3.new(0, 0, 1)
  283. UnPunish.BorderSizePixel = 3
  284. UnPunish.Position = UDim2.new(0, 30, 0, 95)
  285. UnPunish.Size = UDim2.new(0, 95, 0, 30)
  286. UnPunish.Font = Enum.Font.SourceSans
  287. UnPunish.Text = "UnPunish"
  288. UnPunish.TextColor3 = Color3.new(1, 1, 1)
  289. UnPunish.TextSize = 14
  290.  
  291. CloseSettings.Name = "CloseSettings"
  292. CloseSettings.Parent = Frame1
  293. CloseSettings.BackgroundColor3 = Color3.new(0, 0, 0)
  294. CloseSettings.BackgroundTransparency = 0.60000002384186
  295. CloseSettings.BorderColor3 = Color3.new(0, 0, 1)
  296. CloseSettings.BorderSizePixel = 3
  297. CloseSettings.Position = UDim2.new(0, 30, 0, 275)
  298. CloseSettings.Size = UDim2.new(0, 95, 0, 30)
  299. CloseSettings.Font = Enum.Font.SourceSans
  300. CloseSettings.Text = "Close Settings"
  301. CloseSettings.TextColor3 = Color3.new(1, 1, 1)
  302. CloseSettings.TextSize = 14
  303.  
  304. Lag.Name = "Lag"
  305. Lag.Parent = Frame1
  306. Lag.BackgroundColor3 = Color3.new(0, 0, 0)
  307. Lag.BackgroundTransparency = 0.60000002384186
  308. Lag.BorderColor3 = Color3.new(0, 0, 1)
  309. Lag.BorderSizePixel = 3
  310. Lag.Position = UDim2.new(0, 30, 0, 135)
  311. Lag.Size = UDim2.new(0, 95, 0, 30)
  312. Lag.Font = Enum.Font.SourceSans
  313. Lag.Text = "Lag"
  314. Lag.TextColor3 = Color3.new(1, 1, 1)
  315. Lag.TextSize = 14
  316.  
  317. God.Name = "God"
  318. God.Parent = Frame1
  319. God.BackgroundColor3 = Color3.new(0, 0, 0)
  320. God.BackgroundTransparency = 0.60000002384186
  321. God.BorderColor3 = Color3.new(0, 0, 1)
  322. God.BorderSizePixel = 3
  323. God.Position = UDim2.new(0, 30, 0, 175)
  324. God.Size = UDim2.new(0, 95, 0, 30)
  325. God.Font = Enum.Font.SourceSans
  326. God.Text = "God"
  327. God.TextColor3 = Color3.new(1, 1, 1)
  328. God.TextSize = 14
  329.  
  330. UnGod.Name = "UnGod"
  331. UnGod.Parent = Frame1
  332. UnGod.BackgroundColor3 = Color3.new(0, 0, 0)
  333. UnGod.BackgroundTransparency = 0.60000002384186
  334. UnGod.BorderColor3 = Color3.new(0, 0, 1)
  335. UnGod.BorderSizePixel = 3
  336. UnGod.Position = UDim2.new(0, 30, 0, 215)
  337. UnGod.Size = UDim2.new(0, 95, 0, 30)
  338. UnGod.Font = Enum.Font.SourceSans
  339. UnGod.Text = "UnGod"
  340. UnGod.TextColor3 = Color3.new(1, 1, 1)
  341. UnGod.TextSize = 14
  342.  
  343. Next.Name = "Next"
  344. Next.Parent = Frame1
  345. Next.BackgroundColor3 = Color3.new(0, 0, 0)
  346. Next.BackgroundTransparency = 0.60000002384186
  347. Next.BorderColor3 = Color3.new(0, 0, 0.792157)
  348. Next.BorderSizePixel = 3
  349. Next.Position = UDim2.new(0, 105, 0, 251)
  350. Next.Size = UDim2.new(0, 20, 0, 18)
  351. Next.Font = Enum.Font.SourceSans
  352. Next.Text = ">"
  353. Next.TextColor3 = Color3.new(1, 1, 1)
  354. Next.TextSize = 24
  355.  
  356. Number.Name = "Number"
  357. Number.Parent = Frame1
  358. Number.BackgroundColor3 = Color3.new(0, 0, 0)
  359. Number.BackgroundTransparency = 10
  360. Number.BorderColor3 = Color3.new(0, 0, 0)
  361. Number.BorderSizePixel = 3
  362. Number.Position = UDim2.new(0, 70, 0, 251)
  363. Number.Size = UDim2.new(0, 20, 0, 18)
  364. Number.Font = Enum.Font.ArialBold
  365. Number.Text = "1"
  366. Number.TextColor3 = Color3.new(0, 0, 0)
  367. Number.TextSize = 18
  368.  
  369. Frame2.Name = "Frame2"
  370. Frame2.Parent = AdminGui
  371. Frame2.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00784314)
  372. Frame2.BackgroundTransparency = 0.40000000596046
  373. Frame2.BorderColor3 = Color3.new(0, 0, 1)
  374. Frame2.BorderSizePixel = 5
  375. Frame2.Position = UDim2.new(0, 10, 0, 163)
  376. Frame2.Size = UDim2.new(0, 160, 0, 355)
  377. Frame2.Visible = false
  378.  
  379. CloseGui_2.Name = "CloseGui"
  380. CloseGui_2.Parent = Frame2
  381. CloseGui_2.BackgroundColor3 = Color3.new(0, 0, 0)
  382. CloseGui_2.BackgroundTransparency = 0.60000002384186
  383. CloseGui_2.BorderColor3 = Color3.new(0, 0, 1)
  384. CloseGui_2.BorderSizePixel = 3
  385. CloseGui_2.Position = UDim2.new(0, 30, 0, 315)
  386. CloseGui_2.Size = UDim2.new(0, 95, 0, 30)
  387. CloseGui_2.Font = Enum.Font.SourceSans
  388. CloseGui_2.Text = "Close"
  389. CloseGui_2.TextColor3 = Color3.new(1, 1, 1)
  390. CloseGui_2.TextSize = 14
  391.  
  392. Invisible.Name = "Invisible"
  393. Invisible.Parent = Frame2
  394. Invisible.BackgroundColor3 = Color3.new(0, 0, 0)
  395. Invisible.BackgroundTransparency = 0.60000002384186
  396. Invisible.BorderColor3 = Color3.new(0, 0, 1)
  397. Invisible.BorderSizePixel = 3
  398. Invisible.Position = UDim2.new(0, 30, 0, 15)
  399. Invisible.Size = UDim2.new(0, 95, 0, 30)
  400. Invisible.Font = Enum.Font.SourceSans
  401. Invisible.Text = "Invisible"
  402. Invisible.TextColor3 = Color3.new(1, 1, 1)
  403. Invisible.TextSize = 14
  404.  
  405. Number_2.Name = "Number"
  406. Number_2.Parent = Frame2
  407. Number_2.BackgroundColor3 = Color3.new(0, 0, 0)
  408. Number_2.BackgroundTransparency = 10
  409. Number_2.BorderColor3 = Color3.new(0, 0, 0)
  410. Number_2.BorderSizePixel = 3
  411. Number_2.Position = UDim2.new(0, 70, 0, 251)
  412. Number_2.Size = UDim2.new(0, 20, 0, 18)
  413. Number_2.Font = Enum.Font.ArialBold
  414. Number_2.Text = "2"
  415. Number_2.TextColor3 = Color3.new(0, 0, 0)
  416. Number_2.TextSize = 18
  417.  
  418. Back.Name = "Back"
  419. Back.Parent = Frame2
  420. Back.BackgroundColor3 = Color3.new(0, 0, 0)
  421. Back.BackgroundTransparency = 0.60000002384186
  422. Back.BorderColor3 = Color3.new(0, 0, 0.792157)
  423. Back.BorderSizePixel = 3
  424. Back.Position = UDim2.new(0, 30, 0, 251)
  425. Back.Size = UDim2.new(0, 20, 0, 18)
  426. Back.Font = Enum.Font.SourceSans
  427. Back.Text = "<"
  428. Back.TextColor3 = Color3.new(1, 1, 1)
  429. Back.TextSize = 24
  430.  
  431. Next_2.Name = "Next"
  432. Next_2.Parent = Frame2
  433. Next_2.BackgroundColor3 = Color3.new(0, 0, 0)
  434. Next_2.BackgroundTransparency = 0.60000002384186
  435. Next_2.BorderColor3 = Color3.new(0, 0, 0.792157)
  436. Next_2.BorderSizePixel = 3
  437. Next_2.Position = UDim2.new(0, 105, 0, 251)
  438. Next_2.Size = UDim2.new(0, 20, 0, 18)
  439. Next_2.Font = Enum.Font.SourceSans
  440. Next_2.Text = ">"
  441. Next_2.TextColor3 = Color3.new(1, 1, 1)
  442. Next_2.TextSize = 24
  443.  
  444. Visible.Name = "Visible"
  445. Visible.Parent = Frame2
  446. Visible.BackgroundColor3 = Color3.new(0, 0, 0)
  447. Visible.BackgroundTransparency = 0.60000002384186
  448. Visible.BorderColor3 = Color3.new(0, 0, 1)
  449. Visible.BorderSizePixel = 3
  450. Visible.Position = UDim2.new(0, 30, 0, 55)
  451. Visible.Size = UDim2.new(0, 95, 0, 30)
  452. Visible.Font = Enum.Font.SourceSans
  453. Visible.Text = "Visible"
  454. Visible.TextColor3 = Color3.new(1, 1, 1)
  455. Visible.TextSize = 14
  456.  
  457. Freeze.Name = "Freeze"
  458. Freeze.Parent = Frame2
  459. Freeze.BackgroundColor3 = Color3.new(0, 0, 0)
  460. Freeze.BackgroundTransparency = 0.60000002384186
  461. Freeze.BorderColor3 = Color3.new(0, 0, 1)
  462. Freeze.BorderSizePixel = 3
  463. Freeze.Position = UDim2.new(0, 30, 0, 95)
  464. Freeze.Size = UDim2.new(0, 95, 0, 30)
  465. Freeze.Font = Enum.Font.SourceSans
  466. Freeze.Text = "Freeze"
  467. Freeze.TextColor3 = Color3.new(1, 1, 1)
  468. Freeze.TextSize = 14
  469.  
  470. UnFreeze.Name = "UnFreeze"
  471. UnFreeze.Parent = Frame2
  472. UnFreeze.BackgroundColor3 = Color3.new(0, 0, 0)
  473. UnFreeze.BackgroundTransparency = 0.60000002384186
  474. UnFreeze.BorderColor3 = Color3.new(0, 0, 1)
  475. UnFreeze.BorderSizePixel = 3
  476. UnFreeze.Position = UDim2.new(0, 30, 0, 135)
  477. UnFreeze.Size = UDim2.new(0, 95, 0, 30)
  478. UnFreeze.Font = Enum.Font.SourceSans
  479. UnFreeze.Text = "UnFreeze"
  480. UnFreeze.TextColor3 = Color3.new(1, 1, 1)
  481. UnFreeze.TextSize = 14
  482.  
  483. ForceField.Name = "ForceField"
  484. ForceField.Parent = Frame2
  485. ForceField.BackgroundColor3 = Color3.new(0, 0, 0)
  486. ForceField.BackgroundTransparency = 0.60000002384186
  487. ForceField.BorderColor3 = Color3.new(0, 0, 1)
  488. ForceField.BorderSizePixel = 3
  489. ForceField.Position = UDim2.new(0, 30, 0, 175)
  490. ForceField.Size = UDim2.new(0, 95, 0, 30)
  491. ForceField.Font = Enum.Font.SourceSans
  492. ForceField.Text = "ForceField"
  493. ForceField.TextColor3 = Color3.new(1, 1, 1)
  494. ForceField.TextSize = 14
  495.  
  496. UnForceField.Name = "UnForceField"
  497. UnForceField.Parent = Frame2
  498. UnForceField.BackgroundColor3 = Color3.new(0, 0, 0)
  499. UnForceField.BackgroundTransparency = 0.60000002384186
  500. UnForceField.BorderColor3 = Color3.new(0, 0, 1)
  501. UnForceField.BorderSizePixel = 3
  502. UnForceField.Position = UDim2.new(0, 30, 0, 215)
  503. UnForceField.Size = UDim2.new(0, 95, 0, 30)
  504. UnForceField.Font = Enum.Font.SourceSans
  505. UnForceField.Text = "UnForceField"
  506. UnForceField.TextColor3 = Color3.new(1, 1, 1)
  507. UnForceField.TextSize = 14
  508.  
  509. OpenSettings_2.Name = "OpenSettings"
  510. OpenSettings_2.Parent = Frame2
  511. OpenSettings_2.BackgroundColor3 = Color3.new(0, 0, 0)
  512. OpenSettings_2.BackgroundTransparency = 0.60000002384186
  513. OpenSettings_2.BorderColor3 = Color3.new(0, 0, 1)
  514. OpenSettings_2.BorderSizePixel = 3
  515. OpenSettings_2.Position = UDim2.new(0, 30, 0, 275)
  516. OpenSettings_2.Size = UDim2.new(0, 95, 0, 30)
  517. OpenSettings_2.Visible = false
  518. OpenSettings_2.Font = Enum.Font.SourceSans
  519. OpenSettings_2.Text = "Open Settings"
  520. OpenSettings_2.TextColor3 = Color3.new(1, 1, 1)
  521. OpenSettings_2.TextSize = 14
  522.  
  523. CloseSettings_2.Name = "CloseSettings"
  524. CloseSettings_2.Parent = Frame2
  525. CloseSettings_2.BackgroundColor3 = Color3.new(0, 0, 0)
  526. CloseSettings_2.BackgroundTransparency = 0.60000002384186
  527. CloseSettings_2.BorderColor3 = Color3.new(0, 0, 1)
  528. CloseSettings_2.BorderSizePixel = 3
  529. CloseSettings_2.Position = UDim2.new(0, 30, 0, 275)
  530. CloseSettings_2.Size = UDim2.new(0, 95, 0, 30)
  531. CloseSettings_2.Font = Enum.Font.SourceSans
  532. CloseSettings_2.Text = "Close Settings"
  533. CloseSettings_2.TextColor3 = Color3.new(1, 1, 1)
  534. CloseSettings_2.TextSize = 14
  535.  
  536. OpenGui.Name = "OpenGui"
  537. OpenGui.Parent = AdminGui
  538. OpenGui.BackgroundColor3 = Color3.new(0, 0, 0)
  539. OpenGui.BackgroundTransparency = 1.2000000476837
  540. OpenGui.BorderColor3 = Color3.new(0.0470588, 0.184314, 0.623529)
  541. OpenGui.BorderSizePixel = 0
  542. OpenGui.Position = UDim2.new(0, 10, 0, 535)
  543.  
  544. TextButton.Parent = OpenGui
  545. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  546. TextButton.BackgroundTransparency = 0.30000001192093
  547. TextButton.BorderColor3 = Color3.new(0.0745098, 0.145098, 1)
  548. TextButton.BorderSizePixel = 3
  549. TextButton.Position = UDim2.new(0, 0, 0, -2)
  550. TextButton.Size = UDim2.new(0, 95, 0, 30)
  551. TextButton.Font = Enum.Font.SourceSans
  552. TextButton.Text = "Open"
  553. TextButton.TextColor3 = Color3.new(1, 1, 1)
  554. TextButton.TextSize = 14
  555.  
  556. Settings.Name = "Settings"
  557. Settings.Parent = AdminGui
  558. Settings.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00784314)
  559. Settings.BackgroundTransparency = 0.40000000596046
  560. Settings.BorderColor3 = Color3.new(0.0745098, 0.145098, 1)
  561. Settings.BorderSizePixel = 4
  562. Settings.Draggable = true
  563. Settings.Position = UDim2.new(0, 185, 0, 163)
  564. Settings.Size = UDim2.new(0, 160, 0, 355)
  565. Settings.Visible = false
  566.  
  567. PersonBox.Name = "PersonBox"
  568. PersonBox.Parent = Settings
  569. PersonBox.BackgroundColor3 = Color3.new(0, 0, 0)
  570. PersonBox.BackgroundTransparency = 0.60000002384186
  571. PersonBox.BorderColor3 = Color3.new(0, 0, 1)
  572. PersonBox.BorderSizePixel = 3
  573. PersonBox.Position = UDim2.new(0, 18, 0, 15)
  574. PersonBox.Size = UDim2.new(0, 125, 0, 30)
  575. PersonBox.Font = Enum.Font.SourceSans
  576. PersonBox.Text = "Person's Name"
  577. PersonBox.TextColor3 = Color3.new(1, 1, 1)
  578. PersonBox.TextScaled = true
  579. PersonBox.TextSize = 18
  580. PersonBox.TextWrapped = true
  581.  
  582. Frame3.Name = "Frame3"
  583. Frame3.Parent = AdminGui
  584. Frame3.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00784314)
  585. Frame3.BackgroundTransparency = 0.40000000596046
  586. Frame3.BorderColor3 = Color3.new(0, 0, 1)
  587. Frame3.BorderSizePixel = 5
  588. Frame3.Position = UDim2.new(0, 10, 0, 163)
  589. Frame3.Size = UDim2.new(0, 160, 0, 355)
  590. Frame3.Visible = false
  591.  
  592. CloseGui_3.Name = "CloseGui"
  593. CloseGui_3.Parent = Frame3
  594. CloseGui_3.BackgroundColor3 = Color3.new(0, 0, 0)
  595. CloseGui_3.BackgroundTransparency = 0.60000002384186
  596. CloseGui_3.BorderColor3 = Color3.new(0, 0, 1)
  597. CloseGui_3.BorderSizePixel = 3
  598. CloseGui_3.Position = UDim2.new(0, 30, 0, 315)
  599. CloseGui_3.Size = UDim2.new(0, 95, 0, 30)
  600. CloseGui_3.Font = Enum.Font.SourceSans
  601. CloseGui_3.Text = "Close"
  602. CloseGui_3.TextColor3 = Color3.new(1, 1, 1)
  603. CloseGui_3.TextSize = 14
  604.  
  605. Kick.Name = "Kick"
  606. Kick.Parent = Frame3
  607. Kick.BackgroundColor3 = Color3.new(0, 0, 0)
  608. Kick.BackgroundTransparency = 0.60000002384186
  609. Kick.BorderColor3 = Color3.new(0, 0, 1)
  610. Kick.BorderSizePixel = 3
  611. Kick.Position = UDim2.new(0, 30, 0, 15)
  612. Kick.Size = UDim2.new(0, 95, 0, 30)
  613. Kick.Font = Enum.Font.SourceSans
  614. Kick.Text = "Kick"
  615. Kick.TextColor3 = Color3.new(1, 1, 1)
  616. Kick.TextSize = 14
  617.  
  618. Number_3.Name = "Number"
  619. Number_3.Parent = Frame3
  620. Number_3.BackgroundColor3 = Color3.new(0, 0, 0)
  621. Number_3.BackgroundTransparency = 10
  622. Number_3.BorderColor3 = Color3.new(0, 0, 0)
  623. Number_3.BorderSizePixel = 3
  624. Number_3.Position = UDim2.new(0, 70, 0, 251)
  625. Number_3.Size = UDim2.new(0, 20, 0, 18)
  626. Number_3.Font = Enum.Font.ArialBold
  627. Number_3.Text = "3"
  628. Number_3.TextColor3 = Color3.new(0, 0, 0)
  629. Number_3.TextSize = 18
  630.  
  631. Back_2.Name = "Back"
  632. Back_2.Parent = Frame3
  633. Back_2.BackgroundColor3 = Color3.new(0, 0, 0)
  634. Back_2.BackgroundTransparency = 0.60000002384186
  635. Back_2.BorderColor3 = Color3.new(0, 0, 0.792157)
  636. Back_2.BorderSizePixel = 3
  637. Back_2.Position = UDim2.new(0, 30, 0, 251)
  638. Back_2.Size = UDim2.new(0, 20, 0, 18)
  639. Back_2.Font = Enum.Font.SourceSans
  640. Back_2.Text = "<"
  641. Back_2.TextColor3 = Color3.new(1, 1, 1)
  642. Back_2.TextSize = 24
  643.  
  644. Next_3.Name = "Next"
  645. Next_3.Parent = Frame3
  646. Next_3.BackgroundColor3 = Color3.new(0, 0, 0)
  647. Next_3.BackgroundTransparency = 0.60000002384186
  648. Next_3.BorderColor3 = Color3.new(0, 0, 0.792157)
  649. Next_3.BorderSizePixel = 3
  650. Next_3.Position = UDim2.new(0, 105, 0, 251)
  651. Next_3.Size = UDim2.new(0, 20, 0, 18)
  652. Next_3.Font = Enum.Font.SourceSans
  653. Next_3.Text = ">"
  654. Next_3.TextColor3 = Color3.new(1, 1, 1)
  655. Next_3.TextSize = 24
  656.  
  657. KickAll.Name = "Kick All"
  658. KickAll.Parent = Frame3
  659. KickAll.BackgroundColor3 = Color3.new(0, 0, 0)
  660. KickAll.BackgroundTransparency = 0.60000002384186
  661. KickAll.BorderColor3 = Color3.new(0, 0, 1)
  662. KickAll.BorderSizePixel = 3
  663. KickAll.Position = UDim2.new(0, 30, 0, 55)
  664. KickAll.Size = UDim2.new(0, 95, 0, 30)
  665. KickAll.Font = Enum.Font.SourceSans
  666. KickAll.Text = "Kick All"
  667. KickAll.TextColor3 = Color3.new(1, 1, 1)
  668. KickAll.TextSize = 14
  669.  
  670. KillAll.Name = "Kill All"
  671. KillAll.Parent = Frame3
  672. KillAll.BackgroundColor3 = Color3.new(0, 0, 0)
  673. KillAll.BackgroundTransparency = 0.60000002384186
  674. KillAll.BorderColor3 = Color3.new(0, 0, 1)
  675. KillAll.BorderSizePixel = 3
  676. KillAll.Position = UDim2.new(0, 30, 0, 95)
  677. KillAll.Size = UDim2.new(0, 95, 0, 30)
  678. KillAll.Font = Enum.Font.SourceSans
  679. KillAll.Text = "Kill All"
  680. KillAll.TextColor3 = Color3.new(1, 1, 1)
  681. KillAll.TextSize = 14
  682.  
  683. ExplodeAll.Name = "Explode All"
  684. ExplodeAll.Parent = Frame3
  685. ExplodeAll.BackgroundColor3 = Color3.new(0, 0, 0)
  686. ExplodeAll.BackgroundTransparency = 0.60000002384186
  687. ExplodeAll.BorderColor3 = Color3.new(0, 0, 1)
  688. ExplodeAll.BorderSizePixel = 3
  689. ExplodeAll.Position = UDim2.new(0, 30, 0, 135)
  690. ExplodeAll.Size = UDim2.new(0, 95, 0, 30)
  691. ExplodeAll.Font = Enum.Font.SourceSans
  692. ExplodeAll.Text = "Explode All"
  693. ExplodeAll.TextColor3 = Color3.new(1, 1, 1)
  694. ExplodeAll.TextSize = 14
  695.  
  696. KohlsAdmin.Name = "Kohl's Admin"
  697. KohlsAdmin.Parent = Frame3
  698. KohlsAdmin.BackgroundColor3 = Color3.new(0, 0, 0)
  699. KohlsAdmin.BackgroundTransparency = 0.60000002384186
  700. KohlsAdmin.BorderColor3 = Color3.new(0, 0, 1)
  701. KohlsAdmin.BorderSizePixel = 3
  702. KohlsAdmin.Position = UDim2.new(0, 30, 0, 175)
  703. KohlsAdmin.Size = UDim2.new(0, 95, 0, 30)
  704. KohlsAdmin.Font = Enum.Font.SourceSans
  705. KohlsAdmin.Text = "Kohl's Admin"
  706. KohlsAdmin.TextColor3 = Color3.new(1, 1, 1)
  707. KohlsAdmin.TextSize = 14
  708.  
  709. WarHammer.Name = "War Hammer"
  710. WarHammer.Parent = Frame3
  711. WarHammer.BackgroundColor3 = Color3.new(0, 0, 0)
  712. WarHammer.BackgroundTransparency = 0.60000002384186
  713. WarHammer.BorderColor3 = Color3.new(0, 0, 1)
  714. WarHammer.BorderSizePixel = 3
  715. WarHammer.Position = UDim2.new(0, 30, 0, 215)
  716. WarHammer.Size = UDim2.new(0, 95, 0, 30)
  717. WarHammer.Font = Enum.Font.SourceSans
  718. WarHammer.Text = "War Hammer"
  719. WarHammer.TextColor3 = Color3.new(1, 1, 1)
  720. WarHammer.TextSize = 14
  721.  
  722. CloseSettings_3.Name = "CloseSettings"
  723. CloseSettings_3.Parent = Frame3
  724. CloseSettings_3.BackgroundColor3 = Color3.new(0, 0, 0)
  725. CloseSettings_3.BackgroundTransparency = 0.60000002384186
  726. CloseSettings_3.BorderColor3 = Color3.new(0, 0, 1)
  727. CloseSettings_3.BorderSizePixel = 3
  728. CloseSettings_3.Position = UDim2.new(0, 30, 0, 275)
  729. CloseSettings_3.Size = UDim2.new(0, 95, 0, 30)
  730. CloseSettings_3.Font = Enum.Font.SourceSans
  731. CloseSettings_3.Text = "Close Settings"
  732. CloseSettings_3.TextColor3 = Color3.new(1, 1, 1)
  733. CloseSettings_3.TextSize = 14
  734.  
  735. OpenSettings_3.Name = "OpenSettings"
  736. OpenSettings_3.Parent = Frame3
  737. OpenSettings_3.BackgroundColor3 = Color3.new(0, 0, 0)
  738. OpenSettings_3.BackgroundTransparency = 0.60000002384186
  739. OpenSettings_3.BorderColor3 = Color3.new(0, 0, 1)
  740. OpenSettings_3.BorderSizePixel = 3
  741. OpenSettings_3.Position = UDim2.new(0, 30, 0, 275)
  742. OpenSettings_3.Size = UDim2.new(0, 95, 0, 30)
  743. OpenSettings_3.Visible = false
  744. OpenSettings_3.Font = Enum.Font.SourceSans
  745. OpenSettings_3.Text = "Open Settings"
  746. OpenSettings_3.TextColor3 = Color3.new(1, 1, 1)
  747. OpenSettings_3.TextSize = 14
  748.  
  749. Frame4.Name = "Frame4"
  750. Frame4.Parent = AdminGui
  751. Frame4.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00784314)
  752. Frame4.BackgroundTransparency = 0.40000000596046
  753. Frame4.BorderColor3 = Color3.new(0, 0, 1)
  754. Frame4.BorderSizePixel = 5
  755. Frame4.Position = UDim2.new(0, 10, 0, 163)
  756. Frame4.Size = UDim2.new(0, 160, 0, 355)
  757. Frame4.Visible = false
  758.  
  759. CloseGui_4.Name = "CloseGui"
  760. CloseGui_4.Parent = Frame4
  761. CloseGui_4.BackgroundColor3 = Color3.new(0, 0, 0)
  762. CloseGui_4.BackgroundTransparency = 0.60000002384186
  763. CloseGui_4.BorderColor3 = Color3.new(0, 0, 1)
  764. CloseGui_4.BorderSizePixel = 3
  765. CloseGui_4.Position = UDim2.new(0, 30, 0, 315)
  766. CloseGui_4.Size = UDim2.new(0, 95, 0, 30)
  767. CloseGui_4.Font = Enum.Font.SourceSans
  768. CloseGui_4.Text = "Close"
  769. CloseGui_4.TextColor3 = Color3.new(1, 1, 1)
  770. CloseGui_4.TextSize = 14
  771.  
  772. AtlasSword.Name = "Atlas Sword"
  773. AtlasSword.Parent = Frame4
  774. AtlasSword.BackgroundColor3 = Color3.new(0, 0, 0)
  775. AtlasSword.BackgroundTransparency = 0.60000002384186
  776. AtlasSword.BorderColor3 = Color3.new(0, 0, 1)
  777. AtlasSword.BorderSizePixel = 3
  778. AtlasSword.Position = UDim2.new(0, 30, 0, 15)
  779. AtlasSword.Size = UDim2.new(0, 95, 0, 30)
  780. AtlasSword.Font = Enum.Font.SourceSans
  781. AtlasSword.Text = "Atlas Sword"
  782. AtlasSword.TextColor3 = Color3.new(1, 1, 1)
  783. AtlasSword.TextSize = 14
  784.  
  785. Number_4.Name = "Number"
  786. Number_4.Parent = Frame4
  787. Number_4.BackgroundColor3 = Color3.new(0, 0, 0)
  788. Number_4.BackgroundTransparency = 10
  789. Number_4.BorderColor3 = Color3.new(0, 0, 0)
  790. Number_4.BorderSizePixel = 3
  791. Number_4.Position = UDim2.new(0, 70, 0, 251)
  792. Number_4.Size = UDim2.new(0, 20, 0, 18)
  793. Number_4.Font = Enum.Font.ArialBold
  794. Number_4.Text = "4"
  795. Number_4.TextColor3 = Color3.new(0, 0, 0)
  796. Number_4.TextSize = 18
  797.  
  798. Back_3.Name = "Back"
  799. Back_3.Parent = Frame4
  800. Back_3.BackgroundColor3 = Color3.new(0, 0, 0)
  801. Back_3.BackgroundTransparency = 0.60000002384186
  802. Back_3.BorderColor3 = Color3.new(0, 0, 0.792157)
  803. Back_3.BorderSizePixel = 3
  804. Back_3.Position = UDim2.new(0, 30, 0, 251)
  805. Back_3.Size = UDim2.new(0, 20, 0, 18)
  806. Back_3.Font = Enum.Font.SourceSans
  807. Back_3.Text = "<"
  808. Back_3.TextColor3 = Color3.new(1, 1, 1)
  809. Back_3.TextSize = 24
  810.  
  811. Next_4.Name = "Next"
  812. Next_4.Parent = Frame4
  813. Next_4.BackgroundColor3 = Color3.new(0, 0, 0)
  814. Next_4.BackgroundTransparency = 0.60000002384186
  815. Next_4.BorderColor3 = Color3.new(0, 0, 0.792157)
  816. Next_4.BorderSizePixel = 3
  817. Next_4.Position = UDim2.new(0, 105, 0, 251)
  818. Next_4.Size = UDim2.new(0, 20, 0, 18)
  819. Next_4.Font = Enum.Font.SourceSans
  820. Next_4.Text = ">"
  821. Next_4.TextColor3 = Color3.new(1, 1, 1)
  822. Next_4.TextSize = 24
  823.  
  824. ScriptExecutor.Name = "Script Executor"
  825. ScriptExecutor.Parent = Frame4
  826. ScriptExecutor.BackgroundColor3 = Color3.new(0, 0, 0)
  827. ScriptExecutor.BackgroundTransparency = 0.60000002384186
  828. ScriptExecutor.BorderColor3 = Color3.new(0, 0, 1)
  829. ScriptExecutor.BorderSizePixel = 3
  830. ScriptExecutor.Position = UDim2.new(0, 30, 0, 55)
  831. ScriptExecutor.Size = UDim2.new(0, 95, 0, 30)
  832. ScriptExecutor.Font = Enum.Font.SourceSans
  833. ScriptExecutor.Text = "Script Executor"
  834. ScriptExecutor.TextColor3 = Color3.new(1, 1, 1)
  835. ScriptExecutor.TextSize = 14
  836.  
  837. BronyAdmin.Name = "Brony Admin"
  838. BronyAdmin.Parent = Frame4
  839. BronyAdmin.BackgroundColor3 = Color3.new(0, 0, 0)
  840. BronyAdmin.BackgroundTransparency = 0.60000002384186
  841. BronyAdmin.BorderColor3 = Color3.new(0, 0, 1)
  842. BronyAdmin.BorderSizePixel = 3
  843. BronyAdmin.Position = UDim2.new(0, 30, 0, 95)
  844. BronyAdmin.Size = UDim2.new(0, 95, 0, 30)
  845. BronyAdmin.Font = Enum.Font.SourceSans
  846. BronyAdmin.Text = "Brony Admin"
  847. BronyAdmin.TextColor3 = Color3.new(1, 1, 1)
  848. BronyAdmin.TextSize = 14
  849.  
  850. Spike.Name = "Spike"
  851. Spike.Parent = Frame4
  852. Spike.BackgroundColor3 = Color3.new(0, 0, 0)
  853. Spike.BackgroundTransparency = 0.60000002384186
  854. Spike.BorderColor3 = Color3.new(0, 0, 1)
  855. Spike.BorderSizePixel = 3
  856. Spike.Position = UDim2.new(0, 30, 0, 135)
  857. Spike.Size = UDim2.new(0, 95, 0, 30)
  858. Spike.Font = Enum.Font.SourceSans
  859. Spike.Text = "Spike"
  860. Spike.TextColor3 = Color3.new(1, 1, 1)
  861. Spike.TextSize = 14
  862.  
  863. SpiderBot.Name = "SpiderBot"
  864. SpiderBot.Parent = Frame4
  865. SpiderBot.BackgroundColor3 = Color3.new(0, 0, 0)
  866. SpiderBot.BackgroundTransparency = 0.60000002384186
  867. SpiderBot.BorderColor3 = Color3.new(0, 0, 1)
  868. SpiderBot.BorderSizePixel = 3
  869. SpiderBot.Position = UDim2.new(0, 30, 0, 175)
  870. SpiderBot.Size = UDim2.new(0, 95, 0, 30)
  871. SpiderBot.Font = Enum.Font.SourceSans
  872. SpiderBot.Text = "SpiderBot"
  873. SpiderBot.TextColor3 = Color3.new(1, 1, 1)
  874. SpiderBot.TextSize = 14
  875.  
  876. _5tr0b3Gun.Name = "5tr0b3 Gun"
  877. _5tr0b3Gun.Parent = Frame4
  878. _5tr0b3Gun.BackgroundColor3 = Color3.new(0, 0, 0)
  879. _5tr0b3Gun.BackgroundTransparency = 0.60000002384186
  880. _5tr0b3Gun.BorderColor3 = Color3.new(0, 0, 1)
  881. _5tr0b3Gun.BorderSizePixel = 3
  882. _5tr0b3Gun.Position = UDim2.new(0, 30, 0, 215)
  883. _5tr0b3Gun.Size = UDim2.new(0, 95, 0, 30)
  884. _5tr0b3Gun.Font = Enum.Font.SourceSans
  885. _5tr0b3Gun.Text = "5tr0b3 Gun"
  886. _5tr0b3Gun.TextColor3 = Color3.new(1, 1, 1)
  887. _5tr0b3Gun.TextSize = 14
  888.  
  889. CloseSettings_4.Name = "CloseSettings"
  890. CloseSettings_4.Parent = Frame4
  891. CloseSettings_4.BackgroundColor3 = Color3.new(0, 0, 0)
  892. CloseSettings_4.BackgroundTransparency = 0.60000002384186
  893. CloseSettings_4.BorderColor3 = Color3.new(0, 0, 1)
  894. CloseSettings_4.BorderSizePixel = 3
  895. CloseSettings_4.Position = UDim2.new(0, 30, 0, 275)
  896. CloseSettings_4.Size = UDim2.new(0, 95, 0, 30)
  897. CloseSettings_4.Font = Enum.Font.SourceSans
  898. CloseSettings_4.Text = "Close Settings"
  899. CloseSettings_4.TextColor3 = Color3.new(1, 1, 1)
  900. CloseSettings_4.TextSize = 14
  901.  
  902. OpenSettings_4.Name = "OpenSettings"
  903. OpenSettings_4.Parent = Frame4
  904. OpenSettings_4.BackgroundColor3 = Color3.new(0, 0, 0)
  905. OpenSettings_4.BackgroundTransparency = 0.60000002384186
  906. OpenSettings_4.BorderColor3 = Color3.new(0, 0, 1)
  907. OpenSettings_4.BorderSizePixel = 3
  908. OpenSettings_4.Position = UDim2.new(0, 30, 0, 275)
  909. OpenSettings_4.Size = UDim2.new(0, 95, 0, 30)
  910. OpenSettings_4.Visible = false
  911. OpenSettings_4.Font = Enum.Font.SourceSans
  912. OpenSettings_4.Text = "Open Settings"
  913. OpenSettings_4.TextColor3 = Color3.new(1, 1, 1)
  914. OpenSettings_4.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement