Gillranveer12

Devoloper Admin Panel Script Roblox

Jan 1st, 2023
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.67 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local OpenFrame = Instance.new("Frame")
  3. local Open = Instance.new("TextButton")
  4. local UICorner = Instance.new("UICorner")
  5. local Main = Instance.new("Frame")
  6. local UICorner_2 = Instance.new("UICorner")
  7. local Label = Instance.new("TextLabel")
  8. local Fly = Instance.new("TextButton")
  9. local UICorner_3 = Instance.new("UICorner")
  10. local ClicktoTp = Instance.new("TextButton")
  11. local UICorner_4 = Instance.new("UICorner")
  12. local InvisibleFling = Instance.new("TextButton")
  13. local UICorner_5 = Instance.new("UICorner")
  14. local CmdX = Instance.new("TextButton")
  15. local UICorner_6 = Instance.new("UICorner")
  16. local SwiftyTheDonkey = Instance.new("TextButton")
  17. local UICorner_7 = Instance.new("UICorner")
  18. local DarkDexExplorer = Instance.new("TextButton")
  19. local UICorner_8 = Instance.new("UICorner")
  20. local Close = Instance.new("TextButton")
  21. local UICorner_9 = Instance.new("UICorner")
  22.  
  23.  
  24. ScreenGui.Parent = game.CoreGui
  25. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. OpenFrame.Name = "OpenFrame"
  28. OpenFrame.Parent = ScreenGui
  29. OpenFrame.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  30. OpenFrame.Position = UDim2.new(0.00676691718, 0, 0.930197239, 0)
  31. OpenFrame.Size = UDim2.new(0, 156, 0, 38)
  32.  
  33. Open.Name = "Open"
  34. Open.Parent = OpenFrame
  35. Open.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  36. Open.Position = UDim2.new(0.025641026, 0, 0.0789473653, 0)
  37. Open.Size = UDim2.new(0, 147, 0, 31)
  38. Open.Font = Enum.Font.SciFi
  39. Open.Text = "DevoloperPanelOpener"
  40. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  41. Open.TextScaled = true
  42. Open.TextSize = 14.000
  43. Open.TextWrapped = true
  44. Open.MouseButton1Click:Connect(function()
  45. Main.Visible = true
  46. end)
  47.  
  48. UICorner.Parent = OpenFrame
  49.  
  50. Main.Name = "Main"
  51. Main.Parent = ScreenGui
  52. Main.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  53. Main.Position = UDim2.new(0.333082736, 0, 0.257966608, 0)
  54. Main.Size = UDim2.new(0, 230, 0, 334)
  55. Main.Visible = false
  56.  
  57. UICorner_2.CornerRadius = UDim.new(0, 12)
  58. UICorner_2.Parent = Main
  59.  
  60. Label.Name = "Label"
  61. Label.Parent = Main
  62. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. Label.BackgroundTransparency = 1.000
  64. Label.Position = UDim2.new(0.0260869563, 0, -0.032934133, 0)
  65. Label.Size = UDim2.new(0, 190, 0, 54)
  66. Label.Font = Enum.Font.SciFi
  67. Label.Text = "Devoloper Panel"
  68. Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. Label.TextScaled = true
  70. Label.TextSize = 14.000
  71. Label.TextWrapped = true
  72.  
  73. Fly.Name = "Fly"
  74. Fly.Parent = Main
  75. Fly.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  76. Fly.Position = UDim2.new(0.14782609, 0, 0.161676645, 0)
  77. Fly.Size = UDim2.new(0, 162, 0, 32)
  78. Fly.Font = Enum.Font.SciFi
  79. Fly.Text = "Fly"
  80. Fly.TextColor3 = Color3.fromRGB(255, 255, 255)
  81. Fly.TextScaled = true
  82. Fly.TextSize = 14.000
  83. Fly.TextWrapped = true
  84. Fly.MouseButton1Click:Connect(function()
  85. loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
  86. end)
  87.  
  88. UICorner_3.Parent = Fly
  89.  
  90. ClicktoTp.Name = "ClicktoTp"
  91. ClicktoTp.Parent = Main
  92. ClicktoTp.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  93. ClicktoTp.Position = UDim2.new(0.14782609, 0, 0.293413162, 0)
  94. ClicktoTp.Size = UDim2.new(0, 162, 0, 32)
  95. ClicktoTp.Font = Enum.Font.SciFi
  96. ClicktoTp.Text = "Ctrl Click to TP"
  97. ClicktoTp.TextColor3 = Color3.fromRGB(255, 255, 255)
  98. ClicktoTp.TextScaled = true
  99. ClicktoTp.TextSize = 14.000
  100. ClicktoTp.TextWrapped = true
  101. ClicktoTp.MouseButton1Click:Connect(function()
  102.  
  103. local Plr = game:GetService("Players").LocalPlayer
  104. local Mouse = Plr:GetMouse()
  105.  
  106. Mouse.Button1Down:connect(
  107. function()
  108. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then
  109. return
  110. end
  111. if not Mouse.Target then
  112. return
  113. end
  114. Plr.Character:MoveTo(Mouse.Hit.p)
  115. end
  116. )
  117. end)
  118.  
  119.  
  120. UICorner_4.Parent = ClicktoTp
  121.  
  122. InvisibleFling.Name = "InvisibleFling"
  123. InvisibleFling.Parent = Main
  124. InvisibleFling.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  125. InvisibleFling.Position = UDim2.new(0.14782609, 0, 0.42814368, 0)
  126. InvisibleFling.Size = UDim2.new(0, 162, 0, 32)
  127. InvisibleFling.Font = Enum.Font.SciFi
  128. InvisibleFling.Text = "InvisibleFling"
  129. InvisibleFling.TextColor3 = Color3.fromRGB(255, 255, 255)
  130. InvisibleFling.TextScaled = true
  131. InvisibleFling.TextSize = 14.000
  132. InvisibleFling.TextWrapped = true
  133. InvisibleFling.MouseButton1Click:Connect(function()
  134.  
  135.  
  136. spawn(function()
  137. local message = Instance.new("Message",workspace)
  138. message.Text = "Loaded press z to execute inviseble , press x to respawn)"
  139. wait(0.5)
  140. message:Destroy()
  141. end)
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150. local mouse = game.Players.LocalPlayer:GetMouse()
  151.  
  152. local groot = nil
  153.  
  154. mouse.KeyDown:connect(function(k)
  155.  
  156. if k == "z" then
  157.  
  158.  
  159.  
  160. spawn(function()
  161. local message = Instance.new("Message",workspace)
  162. message.Text = "Fe Invisible Fling By Diemiers#4209 Loaded (wait 11 seconds to load)"
  163. wait(11)
  164. message:Destroy()
  165. end)
  166.  
  167.  
  168. local ch = game.Players.LocalPlayer.Character
  169. local prt=Instance.new("Model", workspace)
  170. local z1 = Instance.new("Part", prt)
  171. z1.Name="Torso"
  172. z1.CanCollide = false
  173. z1.Anchored = true
  174. local z2 =Instance.new("Part", prt)
  175. z2.Name="Head"
  176. z2.Anchored = true
  177. z2.CanCollide = false
  178. local z3 =Instance.new("Humanoid", prt)
  179. z3.Name="Humanoid"
  180. z1.Position = Vector3.new(0,9999,0)
  181. z2.Position = Vector3.new(0,9991,0)
  182. game.Players.LocalPlayer.Character=prt
  183. wait(5)
  184. game.Players.LocalPlayer.Character=ch
  185. wait(6)
  186.  
  187.  
  188. local plr = game.Players.LocalPlayer
  189. mouse = plr:GetMouse()
  190.  
  191. local Hum = Instance.new("Humanoid")
  192. Hum.Parent = game.Players.LocalPlayer.Character
  193.  
  194.  
  195. local root = game.Players.LocalPlayer.Character.HumanoidRootPart
  196.  
  197.  
  198. for i,v in pairs(plr.Character:GetChildren()) do
  199.  
  200. if v ~= root and v.Name ~= "Humanoid" then
  201.  
  202. v:Destroy()
  203.  
  204. end
  205.  
  206.  
  207. end
  208.  
  209. workspace.CurrentCamera.CameraSubject = root
  210.  
  211. local se = Instance.new("SelectionBox",root)
  212. se.Adornee = root
  213.  
  214.  
  215. game:GetService('RunService').Stepped:connect(function()
  216. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  217. end)
  218. game:GetService('RunService').RenderStepped:connect(function()
  219. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  220. end)
  221.  
  222.  
  223. power = 999999 -- change this to make it more or less powerful
  224.  
  225. power = power*10
  226.  
  227. ---
  228. wait(.1)
  229. local bambam = Instance.new("BodyThrust")
  230. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  231. bambam.Force = Vector3.new(power,0,power)
  232. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  233.  
  234.  
  235.  
  236.  
  237.  
  238. local plr = game.Players.LocalPlayer
  239. local torso = root
  240. local flying = true
  241. local deb = true
  242. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  243. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  244. local maxspeed = 120
  245. local speed = 15
  246.  
  247.  
  248. ---local bambam = Instance.new("BodyThrust")
  249. ---bambam.Parent = torso
  250. --bambam.Force = Vector3.new(9999999,0,9999999)
  251. --bambam.Location = torso.Position
  252.  
  253.  
  254. ---
  255. groot = root
  256.  
  257. function Fly()
  258. local bg = Instance.new("BodyGyro", torso)
  259. bg.P = 9e4
  260. bg.maxTorque = Vector3.new(0, 0, 0)
  261. bg.cframe = torso.CFrame
  262. local bv = Instance.new("BodyVelocity", torso)
  263. bv.velocity = Vector3.new(0,0,0)
  264. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  265. repeat wait()
  266.  
  267. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  268. speed = speed+.2
  269. if speed > maxspeed then
  270. speed = maxspeed
  271. end
  272. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  273. speed = speed-1
  274. if speed < 0 then
  275. speed = 0
  276. end
  277. end
  278. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  279. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  280. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  281. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  282. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  283. else
  284. bv.velocity = Vector3.new(0,0.1,0)
  285. end
  286.  
  287. until not flying
  288. ctrl = {f = 0, b = 0, l = 0, r = 0}
  289. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  290. speed = 0
  291. bg:Destroy()
  292. bv:Destroy()
  293.  
  294. end
  295. mouse.KeyDown:connect(function(key)
  296. if key:lower() == "e" then
  297. if flying then flying = false
  298. else
  299. flying = true
  300. Fly()
  301. end
  302. elseif key:lower() == "w" then
  303. ctrl.f = 1
  304. elseif key:lower() == "s" then
  305. ctrl.b = -1
  306. elseif key:lower() == "a" then
  307. ctrl.l = -1
  308. elseif key:lower() == "d" then
  309. ctrl.r = 1
  310. end
  311. end)
  312. mouse.KeyUp:connect(function(key)
  313. if key:lower() == "w" then
  314. ctrl.f = 0
  315. elseif key:lower() == "s" then
  316. ctrl.b = 0
  317. elseif key:lower() == "a" then
  318. ctrl.l = 0
  319. elseif key:lower() == "d" then
  320. ctrl.r = 0
  321. elseif key:lower() == "r" then
  322.  
  323. end
  324. end)
  325. Fly()
  326.  
  327.  
  328.  
  329. elseif k == "x" then
  330.  
  331.  
  332. spawn(function()
  333. local message = Instance.new("Message",workspace)
  334. message.Text = "Respawning dont spam"
  335. wait(1)
  336. message:Destroy()
  337. end)
  338.  
  339. local saved = groot.Position
  340.  
  341. local ch = game.Players.LocalPlayer.Character
  342. local prt=Instance.new("Model", workspace)
  343. local z1 = Instance.new("Part", prt)
  344. z1.Name="Torso"
  345. z1.CanCollide = false
  346. z1.Anchored = true
  347. local z2 =Instance.new("Part", prt)
  348. z2.Name="Head"
  349. z2.Anchored = true
  350. z2.CanCollide = false
  351. local z3 =Instance.new("Humanoid", prt)
  352. z3.Name="Humanoid"
  353. z1.Position = Vector3.new(0,9999,0)
  354. z2.Position = Vector3.new(0,9991,0)
  355. game.Players.LocalPlayer.Character=prt
  356. wait(5)
  357. game.Players.LocalPlayer.Character=ch
  358. local poop = nil
  359. repeat wait() poop = game.Players.LocalPlayer.Character:FindFirstChild("Head") until poop ~= nil
  360. wait(1)
  361. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(saved)
  362.  
  363. end
  364.  
  365.  
  366. end)
  367. end)
  368.  
  369. UICorner_5.Parent = InvisibleFling
  370.  
  371. CmdX.Name = "CmdX"
  372. CmdX.Parent = Main
  373. CmdX.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  374. CmdX.Position = UDim2.new(0.14782609, 0, 0.559880197, 0)
  375. CmdX.Size = UDim2.new(0, 162, 0, 32)
  376. CmdX.Font = Enum.Font.SciFi
  377. CmdX.Text = "CmdX"
  378. CmdX.TextColor3 = Color3.fromRGB(255, 255, 255)
  379. CmdX.TextScaled = true
  380. CmdX.TextSize = 14.000
  381. CmdX.TextWrapped = true
  382. CmdX.MouseButton1Click:Connect(function()
  383. loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source", true))()
  384. end)
  385.  
  386. UICorner_6.Parent = CmdX
  387.  
  388. SwiftyTheDonkey.Name = "SwiftyTheDonkey"
  389. SwiftyTheDonkey.Parent = Main
  390. SwiftyTheDonkey.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  391. SwiftyTheDonkey.Position = UDim2.new(0.14782609, 0, 0.688622713, 0)
  392. SwiftyTheDonkey.Size = UDim2.new(0, 162, 0, 32)
  393. SwiftyTheDonkey.Font = Enum.Font.SciFi
  394. SwiftyTheDonkey.Text = "SwiftyTheDonkey"
  395. SwiftyTheDonkey.TextColor3 = Color3.fromRGB(255, 255, 255)
  396. SwiftyTheDonkey.TextScaled = true
  397. SwiftyTheDonkey.TextSize = 14.000
  398. SwiftyTheDonkey.TextWrapped = true
  399. SwiftyTheDonkey.MouseButton1Click:Connect(function()
  400. loadstring(game:HttpGet("https://pastebin.com/raw/SqUvm1qF", true))()
  401. end)
  402.  
  403. UICorner_7.Parent = SwiftyTheDonkey
  404.  
  405. DarkDexExplorer.Name = "DarkDexExplorer"
  406. DarkDexExplorer.Parent = Main
  407. DarkDexExplorer.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  408. DarkDexExplorer.Position = UDim2.new(0.14782609, 0, 0.826347291, 0)
  409. DarkDexExplorer.Size = UDim2.new(0, 162, 0, 32)
  410. DarkDexExplorer.Font = Enum.Font.SciFi
  411. DarkDexExplorer.Text = "DarkDexExplorer"
  412. DarkDexExplorer.TextColor3 = Color3.fromRGB(255, 255, 255)
  413. DarkDexExplorer.TextScaled = true
  414. DarkDexExplorer.TextSize = 14.000
  415. DarkDexExplorer.TextWrapped = true
  416. DarkDexExplorer.MouseButton1Click:Connect(function()
  417. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Shadow-Developer/Shadow/master/Scripts/DarkDexExplorer.lua"))()
  418. end)
  419.  
  420. UICorner_8.Parent = DarkDexExplorer
  421.  
  422. Close.Name = "Close"
  423. Close.Parent = Main
  424. Close.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  425. Close.Position = UDim2.new(0.852173924, 0, 0.00598802604, 0)
  426. Close.Size = UDim2.new(0, 32, 0, 27)
  427. Close.Font = Enum.Font.SciFi
  428. Close.Text = "X"
  429. Close.TextColor3 = Color3.fromRGB(255, 10, 10)
  430. Close.TextScaled = true
  431. Close.TextSize = 14.000
  432. Close.TextWrapped = true
  433. Close.MouseButton1Click:Connect(function()
  434. Main.Visible = false
  435. end)
  436.  
  437. UICorner_9.Parent = Close
Add Comment
Please, Sign In to add comment