Zythronis

Admin Floor 1

Oct 11th, 2024 (edited)
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.16 KB | Gaming | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local CloseButton = Instance.new("TextButton")
  4. local Title = Instance.new("TextLabel")
  5. local Tab1 = Instance.new("Frame")
  6. local CreditsTab = Instance.new("Frame")
  7.  
  8. ScreenGui.Parent = game.CoreGui
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)  -- Cor cinza
  12. Frame.Position = UDim2.new(0.3, 0, 0.05, 0)  -- Movido mais para cima
  13. Frame.Size = UDim2.new(0, 400, 0, 300)
  14.  
  15. Title.Parent = Frame
  16. Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  17. Title.Size = UDim2.new(1, 0, 0, 30)
  18. Title.Text = "admin floor 1"
  19. Title.TextColor3 = Color3.fromRGB(255, 0, 0)  -- Cor vermelha
  20. Title.TextScaled = true
  21.  
  22. CloseButton.Parent = Frame
  23. CloseButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  24. CloseButton.Position = UDim2.new(0.95, 0, 0, 0)
  25. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  26. CloseButton.Text = "X"
  27.  
  28. Tab1.Parent = Frame
  29. Tab1.BackgroundColor3 = Color3.fromRGB(60, 60, 60)  -- Cor cinza
  30. Tab1.Position = UDim2.new(0, 0, 0.1, 0)
  31. Tab1.Size = UDim2.new(0.5, 0, 0.9, 0)  -- Achatei para ter espaço para os outros botões
  32.  
  33. CreditsTab.Parent = Frame
  34. CreditsTab.BackgroundColor3 = Color3.fromRGB(60, 60, 60)  -- Cor cinza
  35. CreditsTab.Position = UDim2.new(0, 0, 0.1, 0)
  36. CreditsTab.Size = UDim2.new(1, 0, 0.9, 0)
  37. CreditsTab.Visible = false
  38.  
  39. local function createButton(parent, text, position, callback)
  40. local button = Instance.new("TextButton")
  41. button.Parent = parent
  42. button.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  43. button.Position = position
  44. button.Size = UDim2.new(0, 200, 0, 50)
  45. button.Text = text
  46. button.MouseButton1Click:Connect(callback)
  47. return button
  48. end
  49.  
  50. createButton(Tab1, "Noclip", UDim2.new(0.5, -100, 0.05, 0), function()
  51. local noclip = false
  52. game:GetService('RunService').Stepped:connect(function()
  53. if noclip then
  54. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  55. end
  56. end)
  57. noclip = not noclip
  58. end)
  59.  
  60. createButton(Tab1, "WalkSpeed", UDim2.new(0.5, -100, 0.2, 0), function()
  61. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  62. end)
  63.  
  64. createButton(Tab1, "JumpPower", UDim2.new(0.5, -100, 0.35, 0), function()
  65. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 110
  66. end)
  67.  
  68. createButton(Tab1, "ESP (Rainbow)", UDim2.new(0.5, -100, 0.5, 0), function()
  69. print("ESP (Rainbow) button clicked")
  70. end)
  71.  
  72. createButton(Tab1, "Fly", UDim2.new(0.5, -100, 0.65, 0), function()
  73. local player = game.Players.LocalPlayer
  74. local character = player.Character
  75. local humanoid = character:FindFirstChildOfClass("Humanoid")
  76. local flying = false
  77.  
  78. local function startFlying()
  79. flying = true
  80. humanoid.PlatformStand = true
  81. while flying do
  82. character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0)
  83. wait(0.1)
  84. end
  85. end
  86.  
  87. local function stopFlying()
  88. flying = false
  89. humanoid.PlatformStand = false
  90. end
  91.  
  92. if flying then
  93. stopFlying()
  94. else
  95. startFlying()
  96. end
  97. end)
  98.  
  99. -- Botões de expulsar e trolagens na direita
  100. createButton(Frame, "Get Free Robux", UDim2.new(0.75, -100, 0.2, 0), function()
  101. game.Players.LocalPlayer:Kick("Trolagem! TU E MUITO OTARIO")
  102. end)
  103.  
  104. createButton(Frame, "Canal Do Player096ofc", UDim2.new(0.75, -100, 0.35, 0), function()
  105. game.Players.LocalPlayer:Kick("TOMOU NO CU KKKKKKKK")
  106. end)
  107.  
  108. createButton(Frame, "Canal do issac raw core", UDim2.new(0.75, -100, 0.31
  109. , 0), function()
  110. game.Players.LocalPlayer:Kick("Hackeado sua conta para desbloquear pague 70 pila em bitcoin para liberar tua conta para o e-mail [email protected]")
  111. end)
  112.  
  113. createButton(Frame, "OPEN GUI", UDim2.new(0.75, -100, 0.06, 0), function()
  114. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-X/main/Games/Doors"))()
  115. end)
  116.  
  117. local creditsSection = Instance.new("Frame")
  118. creditsSection.Parent = CreditsTab
  119. creditsSection.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  120. creditsSection.Position = UDim2.new(0.1, 0, 0.1, 0)
  121. creditsSection.Size = UDim2.new(0.8, 0, 0.8, 0)
  122.  
  123. local creditsLabel = Instance.new("TextLabel")
  124. creditsLabel.Parent = creditsSection
  125. creditsLabel.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  126. creditsLabel.Size = UDim2.new(1, 0, 1, 0)
  127.  
  128. creditsLabel.Text = "Made by issac & Zythronis"
  129. creditsLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  130.  
  131. CloseButton.MouseButton1Click:Connect(function()
  132. ScreenGui:Destroy()
  133. end)
  134.  
  135. -- Função para mover a janela
  136. local dragging
  137. local dragInput
  138. local dragStart
  139. local startPos
  140.  
  141. local function update(input)
  142. local delta = input.Position - dragStart
  143. Frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  144. end
  145.  
  146. Frame.InputBegan:Connect(function(input)
  147. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  148. dragging = true
  149. dragStart = input.Position
  150. startPos = Frame.Position
  151.  
  152. input.Changed:Connect(function()
  153. if input.UserInputState == Enum.UserInputState.End then
  154. dragging = false
  155. end
  156. end)
  157. end
  158. end)
  159.  
  160. Frame.InputChanged:Connect(function(input)
  161. if input.UserInputType == Enum.UserInputType.MouseMovement then
  162. dragInput = input
  163. end
  164. end)
  165.  
  166. game:GetService("UserInputService").InputChanged:Connect(function(input)
  167. if input == dragInput and dragging then
  168. update(input)
  169. end
  170. end)
Advertisement
Add Comment
Please, Sign In to add comment