Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Services
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- local TweenService = game:GetService("TweenService")
- local UserInputService = game:GetService("UserInputService")
- -- ScreenGui
- local ScreenGui = Instance.new("ScreenGui")
- ScreenGui.Name = "KiilmsGUI"
- ScreenGui.Parent = game.CoreGui
- -- Main Frame
- local MainFrame = Instance.new("Frame", ScreenGui)
- MainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- MainFrame.Size = UDim2.new(0, 500, 0, 350)
- MainFrame.Position = UDim2.new(0.5, -250, 0.5, -175)
- MainFrame.ClipsDescendants = true
- local MainCorner = Instance.new("UICorner", MainFrame)
- MainCorner.CornerRadius = UDim.new(0, 10)
- -- Custom Background Image
- local BackgroundImage = Instance.new("ImageLabel", MainFrame)
- BackgroundImage.Size = UDim2.new(1, 0, 1, 0)
- BackgroundImage.Position = UDim2.new(0, 0, 0, 0)
- BackgroundImage.Image = "https://imgs.search.brave.com/nqrLM_O6-aFohLngJOi-JMfzt9ZXIKy61BMTXGrpzBQ/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9pLnBp/bmltZy5jb20vb3Jp/Z2luYWxzLzE5LzM3/Lzc1LzE5Mzc3NWY5/NGQ5OTNlOWEwZjNj/NGIyMzliMGUyNzFm/LmpwZw"
- BackgroundImage.BackgroundTransparency = 1
- BackgroundImage.ZIndex = 0
- -- Top Bar
- local Bar = Instance.new("Frame", MainFrame)
- Bar.Size = UDim2.new(1, 0, 0, 40)
- Bar.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- local BarCorner = Instance.new("UICorner", Bar)
- BarCorner.CornerRadius = UDim.new(0, 10)
- -- Title
- local Title = Instance.new("TextLabel", Bar)
- Title.Text = "Kiilms GUI"
- Title.Size = UDim2.new(0, 200, 1, 0)
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Font = Enum.Font.GothamBold
- Title.TextSize = 16
- Title.TextColor3 = Color3.new(1, 1, 1)
- Title.BackgroundTransparency = 1
- Title.TextXAlignment = Enum.TextXAlignment.Left
- -- Close Button
- local CloseButton = Instance.new("TextButton", Bar)
- CloseButton.Text = "X"
- CloseButton.Size = UDim2.new(0, 30, 0, 30)
- CloseButton.Position = UDim2.new(1, -40, 0.5, -15)
- CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
- CloseButton.TextColor3 = Color3.new(1, 1, 1)
- CloseButton.Font = Enum.Font.GothamBold
- CloseButton.TextSize = 14
- local CloseCorner = Instance.new("UICorner", CloseButton)
- CloseCorner.CornerRadius = UDim.new(0, 8)
- -- Minimize Button
- local MinimizeButton = Instance.new("TextButton", Bar)
- MinimizeButton.Text = "-"
- MinimizeButton.Size = UDim2.new(0, 30, 0, 30)
- MinimizeButton.Position = UDim2.new(1, -80, 0.5, -15)
- MinimizeButton.BackgroundColor3 = Color3.fromRGB(200, 200, 50)
- MinimizeButton.TextColor3 = Color3.new(0, 0, 0)
- MinimizeButton.Font = Enum.Font.GothamBold
- MinimizeButton.TextSize = 14
- local MinimizeCorner = Instance.new("UICorner", MinimizeButton)
- MinimizeCorner.CornerRadius = UDim.new(0, 8)
- -- Tabs
- local TabsFrame = Instance.new("Frame", MainFrame)
- TabsFrame.Size = UDim2.new(1, 0, 0, 40)
- TabsFrame.Position = UDim2.new(0, 0, 0, 40)
- TabsFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- -- Home Tab Button
- local HomeTab = Instance.new("TextButton", TabsFrame)
- HomeTab.Text = "Home"
- HomeTab.Size = UDim2.new(0.5, -5, 1, 0)
- HomeTab.Position = UDim2.new(0, 0, 0, 0)
- HomeTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- HomeTab.TextColor3 = Color3.new(1, 1, 1)
- HomeTab.Font = Enum.Font.GothamBold
- HomeTab.TextSize = 14
- -- Misc Tab Button
- local MiscTab = Instance.new("TextButton", TabsFrame)
- MiscTab.Text = "Misc"
- MiscTab.Size = UDim2.new(0.5, -5, 1, 0)
- MiscTab.Position = UDim2.new(0.5, 5, 0, 0)
- MiscTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- MiscTab.TextColor3 = Color3.new(1, 1, 1)
- MiscTab.Font = Enum.Font.GothamBold
- MiscTab.TextSize = 14
- -- Home Tab Content
- local HomeContainer = Instance.new("Frame", MainFrame)
- HomeContainer.Size = UDim2.new(1, 0, 1, -80)
- HomeContainer.Position = UDim2.new(0, 0, 0, 80)
- HomeContainer.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- local IPLabel = Instance.new("TextLabel", HomeContainer)
- IPLabel.Text = "Your IP: 123.45.67.89 | Country: United States (πΊπΈ)"
- IPLabel.Size = UDim2.new(1, 0, 0, 50)
- IPLabel.Position = UDim2.new(0, 0, 0.5, -25)
- IPLabel.TextColor3 = Color3.new(1, 1, 1)
- IPLabel.Font = Enum.Font.GothamBold
- IPLabel.TextSize = 18
- IPLabel.BackgroundTransparency = 1
- -- Misc Tab Content
- local MiscContainer = Instance.new("Frame", MainFrame)
- MiscContainer.Size = UDim2.new(1, 0, 1, -80)
- MiscContainer.Position = UDim2.new(1, 0, 0, 80)
- MiscContainer.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- local WalkSpeedLabel = Instance.new("TextLabel", MiscContainer)
- WalkSpeedLabel.Text = "Walk Speed"
- WalkSpeedLabel.Size = UDim2.new(0, 100, 0, 20)
- WalkSpeedLabel.Position = UDim2.new(0, 10, 0, 10)
- WalkSpeedLabel.TextColor3 = Color3.new(1, 1, 1)
- WalkSpeedLabel.BackgroundTransparency = 1
- local WalkSpeedSlider = Instance.new("TextButton", MiscContainer)
- WalkSpeedSlider.Size = UDim2.new(0, 200, 0, 30)
- WalkSpeedSlider.Position = UDim2.new(0, 120, 0, 10)
- WalkSpeedSlider.Text = "16"
- WalkSpeedSlider.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- WalkSpeedSlider.TextColor3 = Color3.new(1, 1, 1)
- -- Tabs Switching
- HomeTab.MouseButton1Click:Connect(function()
- HomeTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- MiscTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- HomeContainer.Position = UDim2.new(0, 0, 0, 80)
- MiscContainer.Position = UDim2.new(1, 0, 0, 80)
- end)
- MiscTab.MouseButton1Click:Connect(function()
- MiscTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- HomeTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- HomeContainer.Position = UDim2.new(-1, 0, 0, 80)
- MiscContainer.Position = UDim2.new(0, 0, 0, 80)
- end)
- -- Minimize and Reopen
- local ReopenButton = Instance.new("TextButton", ScreenGui)
- ReopenButton.Text = "Open GUI"
- ReopenButton.Size = UDim2.new(0, 100, 0, 50)
- ReopenButton.Position = UDim2.new(0.5, -50, 0.5, -25)
- ReopenButton.Visible = false
- ReopenButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- MinimizeButton.MouseButton1Click:Connect(function()
- MainFrame.Visible = false
- ReopenButton.Visible = true
- end)
- ReopenButton.MouseButton1Click:Connect(function()
- MainFrame.Visible = true
- ReopenButton.Visible = false
- end)
- -- Close Button Functionality
- CloseButton.MouseButton1Click:Connect(function()
- ScreenGui:Destroy()
- end)
- -- Ctrl Key to Toggle GUI
- UserInputService.InputBegan:Connect(function(input, gameProcessed)
- if not gameProcessed and input.KeyCode == Enum.KeyCode.LeftControl then
- MainFrame.Visible = not MainFrame.Visible
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment