Advertisement
tacticalmanx75

All 3 in 1 Gui Control!

Dec 15th, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.44 KB | None | 0 0
  1. --WaterFire
  2.  
  3. -- Gui to Lua
  4. -- Version: 3
  5.  
  6. -- Instances:
  7.  
  8. local WaterFire = Instance.new("ScreenGui")
  9. local WaterFireFrame = Instance.new("Frame")
  10. local WaterfireLabel = Instance.new("TextLabel")
  11. local ScriptsFrame = Instance.new("Frame")
  12. local ValueBox = Instance.new("TextBox")
  13. local ValueLabel = Instance.new("TextLabel")
  14. local WalkSpeed = Instance.new("TextButton")
  15. local Shutdown = Instance.new("TextButton")
  16. local ForceField = Instance.new("TextButton")
  17. local Fire = Instance.new("TextButton")
  18. local FEKill = Instance.new("TextButton")
  19. local JumpPower = Instance.new("TextButton")
  20. local CloseButton = Instance.new("TextButton")
  21. local OpenButton = Instance.new("TextButton")
  22.  
  23. --Properties:
  24.  
  25. WaterFire.Name = "WaterFire"
  26. WaterFire.Parent = game.Players.tacticalmanx75:WaitForChild("PlayerGui")
  27. WaterFire.ResetOnSpawn = false
  28.  
  29. WaterFireFrame.Name = "WaterFireFrame"
  30. WaterFireFrame.Parent = WaterFire
  31. WaterFireFrame.Active = true
  32. WaterFireFrame.BackgroundColor3 = Color3.new(0.588235, 0.588235, 0.588235)
  33. WaterFireFrame.Position = UDim2.new(0, 0, 0.282317966, 0)
  34. WaterFireFrame.Selectable = true
  35. WaterFireFrame.Size = UDim2.new(0, 424, 0, 311)
  36.  
  37. WaterfireLabel.Name = "WaterfireLabel"
  38. WaterfireLabel.Parent = WaterFireFrame
  39. WaterfireLabel.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  40. WaterfireLabel.Size = UDim2.new(0, 424, 0, 35)
  41. WaterfireLabel.Font = Enum.Font.SciFi
  42. WaterfireLabel.Text = "Waterfire 3.0"
  43. WaterfireLabel.TextColor3 = Color3.new(0, 0, 0)
  44. WaterfireLabel.TextSize = 26
  45.  
  46. ScriptsFrame.Name = "ScriptsFrame"
  47. ScriptsFrame.Parent = WaterFireFrame
  48. ScriptsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  49. ScriptsFrame.BackgroundTransparency = 1
  50. ScriptsFrame.Position = UDim2.new(0, 0, 0.128676474, 0)
  51. ScriptsFrame.Size = UDim2.new(0, 294, 0, 245)
  52.  
  53. ValueBox.Name = "ValueBox"
  54. ValueBox.Parent = ScriptsFrame
  55. ValueBox.BackgroundColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  56. ValueBox.Position = UDim2.new(0.918367326, 0, 0.155102044, 0)
  57. ValueBox.Size = UDim2.new(0, 154, 0, 219)
  58. ValueBox.Font = Enum.Font.SciFi
  59. ValueBox.Text = "Values Here"
  60. ValueBox.TextColor3 = Color3.new(0, 0, 0)
  61. ValueBox.TextSize = 14
  62.  
  63. ValueLabel.Name = "ValueLabel"
  64. ValueLabel.Parent = ValueBox
  65. ValueLabel.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  66. ValueLabel.Position = UDim2.new(0, 0, -0.190954775, 0)
  67. ValueLabel.Size = UDim2.new(0, 154, 0, 44)
  68. ValueLabel.Font = Enum.Font.SciFi
  69. ValueLabel.Text = "Value Executer"
  70. ValueLabel.TextColor3 = Color3.new(0, 0, 0)
  71. ValueLabel.TextSize = 14
  72.  
  73. WalkSpeed.Name = "WalkSpeed"
  74. WalkSpeed.Parent = ScriptsFrame
  75. WalkSpeed.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  76. WalkSpeed.Position = UDim2.new(0, 0, 0.522449017, 0)
  77. WalkSpeed.Size = UDim2.new(0, 117, 0, 50)
  78. WalkSpeed.Font = Enum.Font.SciFi
  79. WalkSpeed.Text = "WalkSpeed"
  80. WalkSpeed.TextColor3 = Color3.new(0, 0, 0)
  81. WalkSpeed.TextSize = 20
  82.  
  83. Shutdown.Name = "Shutdown"
  84. Shutdown.Parent = ScriptsFrame
  85. Shutdown.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  86. Shutdown.Position = UDim2.new(0, 0, 0.844897985, 0)
  87. Shutdown.Size = UDim2.new(0, 117, 0, 50)
  88. Shutdown.Font = Enum.Font.SciFi
  89. Shutdown.Text = "Shutdown"
  90. Shutdown.TextColor3 = Color3.new(0, 0, 0)
  91. Shutdown.TextSize = 20
  92.  
  93. ForceField.Name = "ForceField"
  94. ForceField.Parent = ScriptsFrame
  95. ForceField.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  96. ForceField.Position = UDim2.new(0, 0, 0.179591835, 0)
  97. ForceField.Size = UDim2.new(0, 117, 0, 50)
  98. ForceField.Font = Enum.Font.SciFi
  99. ForceField.Text = "ForceField"
  100. ForceField.TextColor3 = Color3.new(0, 0, 0)
  101. ForceField.TextSize = 20
  102.  
  103. Fire.Name = "Fire"
  104. Fire.Parent = ScriptsFrame
  105. Fire.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  106. Fire.Position = UDim2.new(0.520408154, 0, 0.179591835, 0)
  107. Fire.Size = UDim2.new(0, 117, 0, 50)
  108. Fire.Font = Enum.Font.SciFi
  109. Fire.Text = "Fire"
  110. Fire.TextColor3 = Color3.new(0, 0, 0)
  111. Fire.TextSize = 20
  112.  
  113. FEKill.Name = "FE Kill"
  114. FEKill.Parent = ScriptsFrame
  115. FEKill.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  116. FEKill.Position = UDim2.new(0.520408154, 0, 0.844897985, 0)
  117. FEKill.Size = UDim2.new(0, 117, 0, 50)
  118. FEKill.Font = Enum.Font.SciFi
  119. FEKill.Text = "FE Kill"
  120. FEKill.TextColor3 = Color3.new(0, 0, 0)
  121. FEKill.TextSize = 20
  122.  
  123. JumpPower.Name = "JumpPower"
  124. JumpPower.Parent = ScriptsFrame
  125. JumpPower.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  126. JumpPower.Position = UDim2.new(0.520408154, 0, 0.522449017, 0)
  127. JumpPower.Size = UDim2.new(0, 117, 0, 50)
  128. JumpPower.Font = Enum.Font.SciFi
  129. JumpPower.Text = "JumpPower"
  130. JumpPower.TextColor3 = Color3.new(0, 0, 0)
  131. JumpPower.TextSize = 20
  132.  
  133. CloseButton.Name = "CloseButton"
  134. CloseButton.Parent = WaterFireFrame
  135. CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
  136. CloseButton.BackgroundTransparency = 1
  137. CloseButton.Position = UDim2.new(0.917452872, 0, 0.00321543403, 0)
  138. CloseButton.Size = UDim2.new(0, 35, 0, 35)
  139. CloseButton.Font = Enum.Font.Code
  140. CloseButton.Text = "X"
  141. CloseButton.TextColor3 = Color3.new(0, 0, 0)
  142. CloseButton.TextSize = 40
  143.  
  144. OpenButton.Name = "OpenButton"
  145. OpenButton.Parent = WaterFire
  146. OpenButton.BackgroundColor3 = Color3.new(0.588235, 0.294118, 0.882353)
  147. OpenButton.Position = UDim2.new(0.832146466, 0, 0.505285442, 0)
  148. OpenButton.Size = UDim2.new(0, 165, 0, 100)
  149. OpenButton.Visible = false
  150. OpenButton.Font = Enum.Font.SciFi
  151. OpenButton.Text = "Open WaterFire"
  152. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  153. OpenButton.TextSize = 25
  154.  
  155. -- Scripts:
  156.  
  157. local function BVGGL_fake_script() -- WalkSpeed.WalkSpeedScript
  158.     local script = Instance.new('Script', WalkSpeed)
  159.  
  160.     local box = script.Parent.Parent.ValueBox
  161.     local force = script.Parent
  162.    
  163.     force.MouseButton1Click:connect(function()
  164.         local hum = game.Players.tacticalmanx75.Character.Humanoid
  165.         if hum then
  166.             hum.WalkSpeed = box.Text
  167.         end
  168.     end)
  169. end
  170. coroutine.wrap(BVGGL_fake_script)()
  171. local function KBSOWS_fake_script() -- Shutdown.ShutdownScript
  172.     local script = Instance.new('Script', Shutdown)
  173.  
  174.     script.Parent.MouseButton1Click:connect(function()
  175.         game.Workspace:ClearAllChildren()
  176.         game.Players:ClearAllChildren()
  177.     end)
  178. end
  179. coroutine.wrap(KBSOWS_fake_script)()
  180. local function CYSKQO_fake_script() -- ForceField.FFScript
  181.     local script = Instance.new('Script', ForceField)
  182.  
  183.     script.Parent.MouseButton1Click:connect(function()
  184.         Instance.new("ForceField",game.Players.tacticalmanx75.Character)
  185.     end)
  186. end
  187. coroutine.wrap(CYSKQO_fake_script)()
  188. local function DJIVBN_fake_script() -- Fire.FireScript
  189.     local script = Instance.new('Script', Fire)
  190.  
  191.     script.Parent.MouseButton1Click:connect(function()
  192.         Instance.new("Fire",game.Players.tacticalmanx75.Character.HumanoidRootPart)
  193.     end)
  194. end
  195. coroutine.wrap(DJIVBN_fake_script)()
  196. local function VCQN_fake_script() -- FEKill.FEKillScript
  197.     local script = Instance.new('Script', FEKill)
  198.  
  199.     script.Parent.MouseButton1Click:connect(function()
  200.         for i,v in pairs(game.Players:GetChildren()) do
  201.             v.Character.Humanoid.Health = 0
  202.         end
  203.     end)
  204. end
  205. coroutine.wrap(VCQN_fake_script)()
  206. local function ZWYXR_fake_script() -- JumpPower.JumpPowerScript
  207.     local script = Instance.new('Script', JumpPower)
  208.  
  209.     local jump = script.Parent
  210.     local box = script.Parent.Parent.ValueBox
  211.    
  212.     script.Parent.MouseButton1Click:connect(function()
  213.         game.Players.tacticalmanx75.Character.Humanoid.JumpPower = box.Text
  214.     end)
  215. end
  216. coroutine.wrap(ZWYXR_fake_script)()
  217. local function CNJBGXE_fake_script() -- CloseButton.CloseScript
  218.     local script = Instance.new('LocalScript', CloseButton)
  219.  
  220.     script.Parent.MouseButton1Click:Connect(function()
  221.         script.Parent.Parent.Visible = false
  222.         script.Parent.Parent.Parent.OpenButton.Visible = true
  223.     end)
  224. end
  225. coroutine.wrap(CNJBGXE_fake_script)()
  226. local function OJDJ_fake_script() -- WaterFire.DraggableGui
  227.     local script = Instance.new('LocalScript', WaterFire)
  228.  
  229.     local wf = script.Parent.WaterFireFrame
  230.     wf.Draggable = true
  231. end
  232. coroutine.wrap(OJDJ_fake_script)()
  233. local function SLPZSRZ_fake_script() -- OpenButton.OpenScript
  234.     local script = Instance.new('LocalScript', OpenButton)
  235.  
  236.     script.Parent.MouseButton1Click:Connect(function()
  237.         script.Parent.Parent.WaterFireFrame.Visible = true
  238.         script.Parent.Visible = false
  239.     end)
  240. end
  241. coroutine.wrap(SLPZSRZ_fake_script)()
  242.  
  243. --Void Gui
  244.  
  245.  
  246. -- Gui to Lua
  247. -- Version: 3
  248.  
  249. -- Instances:
  250.  
  251. local TacticalVoidGui2 = Instance.new("ScreenGui")
  252. local ScriptFrame = Instance.new("Frame")
  253. local TimeStop = Instance.new("TextButton")
  254. local CreditLabel = Instance.new("TextLabel")
  255. local ExitButton = Instance.new("TextButton")
  256. local UnpauseTime = Instance.new("TextButton")
  257.  
  258. --Properties:
  259.  
  260. TacticalVoidGui2.Name = "TacticalVoidGui2"
  261. TacticalVoidGui2.Parent = game.Players.tacticalmanx75.PlayerGui
  262. TacticalVoidGui2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  263.  
  264. ScriptFrame.Name = "ScriptFrame"
  265. ScriptFrame.Parent = TacticalVoidGui2
  266. ScriptFrame.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  267. ScriptFrame.Position = UDim2.new(0, 0, 0.709401727, 0)
  268. ScriptFrame.Size = UDim2.new(0, 491, 0, 113)
  269.  
  270. TimeStop.Name = "TimeStop"
  271. TimeStop.Parent = ScriptFrame
  272. TimeStop.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  273. TimeStop.Position = UDim2.new(0, 0, 0.556063414, 0)
  274. TimeStop.Size = UDim2.new(0, 166, 0, 50)
  275. TimeStop.Font = Enum.Font.SciFi
  276. TimeStop.Text = "TimeStop"
  277. TimeStop.TextColor3 = Color3.new(0, 0, 0)
  278. TimeStop.TextSize = 38
  279.  
  280. CreditLabel.Name = "CreditLabel"
  281. CreditLabel.Parent = ScriptFrame
  282. CreditLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  283. CreditLabel.BackgroundTransparency = 1
  284. CreditLabel.Size = UDim2.new(0, 547, 0, 50)
  285. CreditLabel.Font = Enum.Font.SciFi
  286. CreditLabel.Text = "Tactical's Script Hub"
  287. CreditLabel.TextColor3 = Color3.new(0, 0, 0)
  288. CreditLabel.TextSize = 40
  289.  
  290. ExitButton.Name = "ExitButton"
  291. ExitButton.Parent = ScriptFrame
  292. ExitButton.BackgroundColor3 = Color3.new(1, 1, 1)
  293. ExitButton.BackgroundTransparency = 1
  294. ExitButton.Position = UDim2.new(0.879341841, 0, 0, 0)
  295. ExitButton.Size = UDim2.new(0, 66, 0, 50)
  296. ExitButton.Font = Enum.Font.SourceSansItalic
  297. ExitButton.Text = "X"
  298. ExitButton.TextColor3 = Color3.new(0, 0, 0)
  299. ExitButton.TextSize = 60
  300.  
  301. UnpauseTime.Name = "UnpauseTime"
  302. UnpauseTime.Parent = ScriptFrame
  303. UnpauseTime.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  304. UnpauseTime.Position = UDim2.new(0.386965364, 0, 0.556063235, 0)
  305. UnpauseTime.Size = UDim2.new(0, 214, 0, 50)
  306. UnpauseTime.Font = Enum.Font.SciFi
  307. UnpauseTime.Text = "UnPauseTime"
  308. UnpauseTime.TextColor3 = Color3.new(0, 0, 0)
  309. UnpauseTime.TextSize = 38
  310.  
  311. -- Scripts:
  312.  
  313. local function NXIGBUE_fake_script() -- TimeStop.Pause
  314.     local script = Instance.new('Script', TimeStop)
  315.  
  316.     script.Parent.MouseButton1Click:Connect(function()
  317.         local owner = game.Players.tacticalmanx75
  318.         for i,v in pairs(game.Players:GetChildren()) do
  319.             v.Character.Humanoid.WalkSpeed = 0
  320.             v.Character.Humanoid.JumpPower = 0
  321.             owner.Character.Humanoid.WalkSpeed = 35
  322.             owner.Character.Humanoid.JumpPower = 65
  323.         end
  324.     end)
  325. end
  326. coroutine.wrap(NXIGBUE_fake_script)()
  327. local function TAWR_fake_script() -- ExitButton.ExitScript
  328.     local script = Instance.new('Script', ExitButton)
  329.  
  330.     script.Parent.MouseButton1Click:Connect(function()
  331.         script.Parent.Parent.Visible = false
  332.     end)
  333. end
  334. coroutine.wrap(TAWR_fake_script)()
  335. local function PHHNOG_fake_script() -- UnpauseTime.Resume
  336.     local script = Instance.new('Script', UnpauseTime)
  337.  
  338.     script.Parent.MouseButton1Click:Connect(function()
  339.         local owner = game.Players.tacticalmanx75
  340.         for i,v in pairs(game.Players:GetChildren()) do
  341.             v.Character.Humanoid.WalkSpeed = 16
  342.             v.Character.Humanoid.JumpPower = 50
  343.             owner.Character.Humanoid.WalkSpeed = 35
  344.             owner.Character.Humanoid.JumpPower = 65
  345.         end
  346.     end)
  347. end
  348. coroutine.wrap(PHHNOG_fake_script)()
  349.  
  350.  
  351. --Client Side Admin Panel
  352.  
  353.  
  354.  
  355. -- Gui to Lua
  356. -- Version: 3
  357.  
  358. -- Instances:
  359.  
  360. local AdminPanel = Instance.new("ScreenGui")
  361. local AdminPanelFrame = Instance.new("Frame")
  362. local Kick = Instance.new("TextButton")
  363. local Kill = Instance.new("TextButton")
  364. local AdminLabel = Instance.new("TextLabel")
  365. local CloseButton = Instance.new("TextButton")
  366. local NameBox = Instance.new("TextBox")
  367. local KickReason = Instance.new("TextBox")
  368. local OpenButton = Instance.new("TextButton")
  369.  
  370. --Properties:
  371.  
  372. AdminPanel.Name = "AdminPanel"
  373. AdminPanel.Parent = game.Players.tacticalmanx75:WaitForChild("PlayerGui")
  374. AdminPanel.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  375.  
  376. AdminPanelFrame.Name = "AdminPanelFrame"
  377. AdminPanelFrame.Parent = AdminPanel
  378. AdminPanelFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  379. AdminPanelFrame.Position = UDim2.new(0.25315392, 0, 0.264931083, 0)
  380. AdminPanelFrame.Size = UDim2.new(0, 586, 0, 350)
  381.  
  382. Kick.Name = "Kick"
  383. Kick.Parent = AdminPanelFrame
  384. Kick.BackgroundColor3 = Color3.new(0.431373, 0.431373, 0.431373)
  385. Kick.Position = UDim2.new(0, 0, 0.28285712, 0)
  386. Kick.Size = UDim2.new(0, 186, 0, 73)
  387. Kick.Font = Enum.Font.SciFi
  388. Kick.Text = "Kick"
  389. Kick.TextColor3 = Color3.new(0, 0, 0)
  390. Kick.TextSize = 30
  391.  
  392. Kill.Name = "Kill"
  393. Kill.Parent = AdminPanelFrame
  394. Kill.BackgroundColor3 = Color3.new(0.431373, 0.431373, 0.431373)
  395. Kill.Position = UDim2.new(0, 0, 0.657142878, 0)
  396. Kill.Size = UDim2.new(0, 186, 0, 73)
  397. Kill.Font = Enum.Font.SciFi
  398. Kill.Text = "Kill"
  399. Kill.TextColor3 = Color3.new(0, 0, 0)
  400. Kill.TextSize = 30
  401.  
  402. AdminLabel.Name = "AdminLabel"
  403. AdminLabel.Parent = AdminPanelFrame
  404. AdminLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  405. AdminLabel.BackgroundTransparency = 1
  406. AdminLabel.Size = UDim2.new(0, 586, 0, 68)
  407. AdminLabel.Font = Enum.Font.SciFi
  408. AdminLabel.Text = "Tactical's Admin Gui"
  409. AdminLabel.TextColor3 = Color3.new(0, 0, 0)
  410. AdminLabel.TextSize = 45
  411.  
  412. CloseButton.Name = "CloseButton"
  413. CloseButton.Parent = AdminPanelFrame
  414. CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
  415. CloseButton.BackgroundTransparency = 1
  416. CloseButton.Position = UDim2.new(0.89249146, 0, 0.0257142857, 0)
  417. CloseButton.Size = UDim2.new(0, 63, 0, 50)
  418. CloseButton.Font = Enum.Font.SourceSans
  419. CloseButton.Text = "X"
  420. CloseButton.TextColor3 = Color3.new(0, 0, 0)
  421. CloseButton.TextSize = 50
  422.  
  423. NameBox.Name = "NameBox"
  424. NameBox.Parent = AdminPanelFrame
  425. NameBox.BackgroundColor3 = Color3.new(0.431373, 0.431373, 0.431373)
  426. NameBox.Position = UDim2.new(0.658703089, 0, 0.245714292, 0)
  427. NameBox.Size = UDim2.new(0, 200, 0, 109)
  428. NameBox.Font = Enum.Font.SourceSans
  429. NameBox.PlaceholderText = "Write a player's name here."
  430. NameBox.Text = ""
  431. NameBox.TextColor3 = Color3.new(0, 0, 0)
  432. NameBox.TextSize = 20
  433. NameBox.TextWrapped = true
  434.  
  435. KickReason.Name = "KickReason"
  436. KickReason.Parent = AdminPanelFrame
  437. KickReason.BackgroundColor3 = Color3.new(0.431373, 0.431373, 0.431373)
  438. KickReason.Position = UDim2.new(0.658703089, 0, 0.60857141, 0)
  439. KickReason.Size = UDim2.new(0, 200, 0, 90)
  440. KickReason.Font = Enum.Font.SourceSans
  441. KickReason.PlaceholderText = "Kick Reason Here."
  442. KickReason.Text = ""
  443. KickReason.TextColor3 = Color3.new(0, 0, 0)
  444. KickReason.TextSize = 20
  445.  
  446. OpenButton.Name = "OpenButton"
  447. OpenButton.Parent = AdminPanel
  448. OpenButton.BackgroundColor3 = Color3.new(0.607843, 0.301961, 0.909804)
  449. OpenButton.Position = UDim2.new(0.81624651, 0, 0.526878178, 0)
  450. OpenButton.Size = UDim2.new(0, 218, 0, 115)
  451. OpenButton.Visible = false
  452. OpenButton.Font = Enum.Font.SciFi
  453. OpenButton.Text = "Open Admin Gui"
  454. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  455. OpenButton.TextSize = 35
  456.  
  457. -- Scripts:
  458.  
  459. local function VMKJQ_fake_script() -- Kick.KickScript
  460.     local script = Instance.new('LocalScript', Kick)
  461.  
  462.     script.Parent.MouseButton1Click:Connect(function()
  463.         game.Players:FindFirstChild(NameBox.Text):Kick("Kicked by tacticalmanx75. Reason: ".. KickReason.Text)
  464.     end)
  465. end
  466. coroutine.wrap(VMKJQ_fake_script)()
  467. local function IMDNN_fake_script() -- Kill.KillScript
  468.     local script = Instance.new('LocalScript', Kill)
  469.  
  470.     script.Parent.MouseButton1Click:Connect(function()
  471.         game.Players:FindFirstChild(NameBox.Text).Character.Humanoid.Health = 0
  472.         game.Players:FindFirstChild(NameBox.Text).Character:BreakJoints()
  473.     end)
  474. end
  475. coroutine.wrap(IMDNN_fake_script)()
  476. local function FBOBV_fake_script() -- CloseButton.CloseScript
  477.     local script = Instance.new('Script', CloseButton)
  478.  
  479.     script.Parent.MouseButton1Click:Connect(function()
  480.         script.Parent.Parent.Visible = false
  481.         script.Parent.Parent.Parent.OpenButton.Visible = true
  482.     end)
  483. end
  484. coroutine.wrap(FBOBV_fake_script)()
  485. local function JNZDMK_fake_script() -- OpenButton.OpenButton
  486.     local script = Instance.new('Script', OpenButton)
  487.  
  488.     script.Parent.MouseButton1Click:Connect(function()
  489.         script.Parent.Parent.AdminPanelFrame.Visible = true
  490.         script.Parent.Visible = false
  491.     end)
  492. end
  493. coroutine.wrap(JNZDMK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement