Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local CloseButton = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local Tab1 = Instance.new("Frame")
- local CreditsTab = Instance.new("Frame")
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) -- Cor cinza
- Frame.Position = UDim2.new(0.3, 0, 0.05, 0) -- Movido mais para cima
- Frame.Size = UDim2.new(0, 400, 0, 300)
- Title.Parent = Frame
- Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- Title.Size = UDim2.new(1, 0, 0, 30)
- Title.Text = "admin floor 1"
- Title.TextColor3 = Color3.fromRGB(255, 0, 0) -- Cor vermelha
- Title.TextScaled = true
- CloseButton.Parent = Frame
- CloseButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- CloseButton.Position = UDim2.new(0.95, 0, 0, 0)
- CloseButton.Size = UDim2.new(0, 20, 0, 20)
- CloseButton.Text = "X"
- Tab1.Parent = Frame
- Tab1.BackgroundColor3 = Color3.fromRGB(60, 60, 60) -- Cor cinza
- Tab1.Position = UDim2.new(0, 0, 0.1, 0)
- Tab1.Size = UDim2.new(0.5, 0, 0.9, 0) -- Achatei para ter espaço para os outros botões
- CreditsTab.Parent = Frame
- CreditsTab.BackgroundColor3 = Color3.fromRGB(60, 60, 60) -- Cor cinza
- CreditsTab.Position = UDim2.new(0, 0, 0.1, 0)
- CreditsTab.Size = UDim2.new(1, 0, 0.9, 0)
- CreditsTab.Visible = false
- local function createButton(parent, text, position, callback)
- local button = Instance.new("TextButton")
- button.Parent = parent
- button.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- button.Position = position
- button.Size = UDim2.new(0, 200, 0, 50)
- button.Text = text
- button.MouseButton1Click:Connect(callback)
- return button
- end
- createButton(Tab1, "Noclip", UDim2.new(0.5, -100, 0.05, 0), function()
- local noclip = false
- game:GetService('RunService').Stepped:connect(function()
- if noclip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- noclip = not noclip
- end)
- createButton(Tab1, "WalkSpeed", UDim2.new(0.5, -100, 0.2, 0), function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end)
- createButton(Tab1, "JumpPower", UDim2.new(0.5, -100, 0.35, 0), function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 110
- end)
- createButton(Tab1, "ESP (Rainbow)", UDim2.new(0.5, -100, 0.5, 0), function()
- print("ESP (Rainbow) button clicked")
- end)
- createButton(Tab1, "Fly", UDim2.new(0.5, -100, 0.65, 0), function()
- local player = game.Players.LocalPlayer
- local character = player.Character
- local humanoid = character:FindFirstChildOfClass("Humanoid")
- local flying = false
- local function startFlying()
- flying = true
- humanoid.PlatformStand = true
- while flying do
- character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0)
- wait(0.1)
- end
- end
- local function stopFlying()
- flying = false
- humanoid.PlatformStand = false
- end
- if flying then
- stopFlying()
- else
- startFlying()
- end
- end)
- -- Botões de expulsar e trolagens na direita
- createButton(Frame, "Get Free Robux", UDim2.new(0.75, -100, 0.2, 0), function()
- game.Players.LocalPlayer:Kick("Trolagem! TU E MUITO OTARIO")
- end)
- createButton(Frame, "Canal Do Player096ofc", UDim2.new(0.75, -100, 0.35, 0), function()
- game.Players.LocalPlayer:Kick("TOMOU NO CU KKKKKKKK")
- end)
- createButton(Frame, "Canal do issac raw core", UDim2.new(0.75, -100, 0.31
- , 0), function()
- game.Players.LocalPlayer:Kick("Hackeado sua conta para desbloquear pague 70 pila em bitcoin para liberar tua conta para o e-mail [email protected]")
- end)
- createButton(Frame, "OPEN GUI", UDim2.new(0.75, -100, 0.06, 0), function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-X/main/Games/Doors"))()
- end)
- local creditsSection = Instance.new("Frame")
- creditsSection.Parent = CreditsTab
- creditsSection.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
- creditsSection.Position = UDim2.new(0.1, 0, 0.1, 0)
- creditsSection.Size = UDim2.new(0.8, 0, 0.8, 0)
- local creditsLabel = Instance.new("TextLabel")
- creditsLabel.Parent = creditsSection
- creditsLabel.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
- creditsLabel.Size = UDim2.new(1, 0, 1, 0)
- creditsLabel.Text = "Made by issac & Zythronis"
- creditsLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- CloseButton.MouseButton1Click:Connect(function()
- ScreenGui:Destroy()
- end)
- -- Função para mover a janela
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- Frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- Frame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- dragging = true
- dragStart = input.Position
- startPos = Frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- Frame.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement then
- dragInput = input
- end
- end)
- game:GetService("UserInputService").InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- update(input)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment