KiilmYk

extra

Jan 17th, 2025 (edited)
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.41 KB | None | 0 0
  1. -- Services
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4. local TweenService = game:GetService("TweenService")
  5. local UserInputService = game:GetService("UserInputService")
  6.  
  7. -- ScreenGui
  8. local ScreenGui = Instance.new("ScreenGui")
  9. ScreenGui.Name = "KiilmsGUI"
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. -- Main Frame
  13. local MainFrame = Instance.new("Frame", ScreenGui)
  14. MainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  15. MainFrame.Size = UDim2.new(0, 500, 0, 350)
  16. MainFrame.Position = UDim2.new(0.5, -250, 0.5, -175)
  17. MainFrame.ClipsDescendants = true
  18.  
  19. local MainCorner = Instance.new("UICorner", MainFrame)
  20. MainCorner.CornerRadius = UDim.new(0, 10)
  21.  
  22. -- Custom Background Image
  23. local BackgroundImage = Instance.new("ImageLabel", MainFrame)
  24. BackgroundImage.Size = UDim2.new(1, 0, 1, 0)
  25. BackgroundImage.Position = UDim2.new(0, 0, 0, 0)
  26. 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"
  27. BackgroundImage.BackgroundTransparency = 1
  28. BackgroundImage.ZIndex = 0
  29.  
  30. -- Top Bar
  31. local Bar = Instance.new("Frame", MainFrame)
  32. Bar.Size = UDim2.new(1, 0, 0, 40)
  33. Bar.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  34.  
  35. local BarCorner = Instance.new("UICorner", Bar)
  36. BarCorner.CornerRadius = UDim.new(0, 10)
  37.  
  38. -- Title
  39. local Title = Instance.new("TextLabel", Bar)
  40. Title.Text = "Kiilms GUI"
  41. Title.Size = UDim2.new(0, 200, 1, 0)
  42. Title.Position = UDim2.new(0, 10, 0, 0)
  43. Title.Font = Enum.Font.GothamBold
  44. Title.TextSize = 16
  45. Title.TextColor3 = Color3.new(1, 1, 1)
  46. Title.BackgroundTransparency = 1
  47. Title.TextXAlignment = Enum.TextXAlignment.Left
  48.  
  49. -- Close Button
  50. local CloseButton = Instance.new("TextButton", Bar)
  51. CloseButton.Text = "X"
  52. CloseButton.Size = UDim2.new(0, 30, 0, 30)
  53. CloseButton.Position = UDim2.new(1, -40, 0.5, -15)
  54. CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
  55. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  56. CloseButton.Font = Enum.Font.GothamBold
  57. CloseButton.TextSize = 14
  58.  
  59. local CloseCorner = Instance.new("UICorner", CloseButton)
  60. CloseCorner.CornerRadius = UDim.new(0, 8)
  61.  
  62. -- Minimize Button
  63. local MinimizeButton = Instance.new("TextButton", Bar)
  64. MinimizeButton.Text = "-"
  65. MinimizeButton.Size = UDim2.new(0, 30, 0, 30)
  66. MinimizeButton.Position = UDim2.new(1, -80, 0.5, -15)
  67. MinimizeButton.BackgroundColor3 = Color3.fromRGB(200, 200, 50)
  68. MinimizeButton.TextColor3 = Color3.new(0, 0, 0)
  69. MinimizeButton.Font = Enum.Font.GothamBold
  70. MinimizeButton.TextSize = 14
  71.  
  72. local MinimizeCorner = Instance.new("UICorner", MinimizeButton)
  73. MinimizeCorner.CornerRadius = UDim.new(0, 8)
  74.  
  75. -- Tabs
  76. local TabsFrame = Instance.new("Frame", MainFrame)
  77. TabsFrame.Size = UDim2.new(1, 0, 0, 40)
  78. TabsFrame.Position = UDim2.new(0, 0, 0, 40)
  79. TabsFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  80.  
  81. -- Home Tab Button
  82. local HomeTab = Instance.new("TextButton", TabsFrame)
  83. HomeTab.Text = "Home"
  84. HomeTab.Size = UDim2.new(0.5, -5, 1, 0)
  85. HomeTab.Position = UDim2.new(0, 0, 0, 0)
  86. HomeTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  87. HomeTab.TextColor3 = Color3.new(1, 1, 1)
  88. HomeTab.Font = Enum.Font.GothamBold
  89. HomeTab.TextSize = 14
  90.  
  91. -- Misc Tab Button
  92. local MiscTab = Instance.new("TextButton", TabsFrame)
  93. MiscTab.Text = "Misc"
  94. MiscTab.Size = UDim2.new(0.5, -5, 1, 0)
  95. MiscTab.Position = UDim2.new(0.5, 5, 0, 0)
  96. MiscTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  97. MiscTab.TextColor3 = Color3.new(1, 1, 1)
  98. MiscTab.Font = Enum.Font.GothamBold
  99. MiscTab.TextSize = 14
  100.  
  101. -- Home Tab Content
  102. local HomeContainer = Instance.new("Frame", MainFrame)
  103. HomeContainer.Size = UDim2.new(1, 0, 1, -80)
  104. HomeContainer.Position = UDim2.new(0, 0, 0, 80)
  105. HomeContainer.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  106.  
  107. local IPLabel = Instance.new("TextLabel", HomeContainer)
  108. IPLabel.Text = "Your IP: 123.45.67.89 | Country: United States (πŸ‡ΊπŸ‡Έ)"
  109. IPLabel.Size = UDim2.new(1, 0, 0, 50)
  110. IPLabel.Position = UDim2.new(0, 0, 0.5, -25)
  111. IPLabel.TextColor3 = Color3.new(1, 1, 1)
  112. IPLabel.Font = Enum.Font.GothamBold
  113. IPLabel.TextSize = 18
  114. IPLabel.BackgroundTransparency = 1
  115.  
  116. -- Misc Tab Content
  117. local MiscContainer = Instance.new("Frame", MainFrame)
  118. MiscContainer.Size = UDim2.new(1, 0, 1, -80)
  119. MiscContainer.Position = UDim2.new(1, 0, 0, 80)
  120. MiscContainer.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  121.  
  122. local WalkSpeedLabel = Instance.new("TextLabel", MiscContainer)
  123. WalkSpeedLabel.Text = "Walk Speed"
  124. WalkSpeedLabel.Size = UDim2.new(0, 100, 0, 20)
  125. WalkSpeedLabel.Position = UDim2.new(0, 10, 0, 10)
  126. WalkSpeedLabel.TextColor3 = Color3.new(1, 1, 1)
  127. WalkSpeedLabel.BackgroundTransparency = 1
  128.  
  129. local WalkSpeedSlider = Instance.new("TextButton", MiscContainer)
  130. WalkSpeedSlider.Size = UDim2.new(0, 200, 0, 30)
  131. WalkSpeedSlider.Position = UDim2.new(0, 120, 0, 10)
  132. WalkSpeedSlider.Text = "16"
  133. WalkSpeedSlider.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  134. WalkSpeedSlider.TextColor3 = Color3.new(1, 1, 1)
  135.  
  136. -- Tabs Switching
  137. HomeTab.MouseButton1Click:Connect(function()
  138. HomeTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  139. MiscTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  140. HomeContainer.Position = UDim2.new(0, 0, 0, 80)
  141. MiscContainer.Position = UDim2.new(1, 0, 0, 80)
  142. end)
  143.  
  144. MiscTab.MouseButton1Click:Connect(function()
  145. MiscTab.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  146. HomeTab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  147. HomeContainer.Position = UDim2.new(-1, 0, 0, 80)
  148. MiscContainer.Position = UDim2.new(0, 0, 0, 80)
  149. end)
  150.  
  151. -- Minimize and Reopen
  152. local ReopenButton = Instance.new("TextButton", ScreenGui)
  153. ReopenButton.Text = "Open GUI"
  154. ReopenButton.Size = UDim2.new(0, 100, 0, 50)
  155. ReopenButton.Position = UDim2.new(0.5, -50, 0.5, -25)
  156. ReopenButton.Visible = false
  157. ReopenButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  158.  
  159. MinimizeButton.MouseButton1Click:Connect(function()
  160. MainFrame.Visible = false
  161. ReopenButton.Visible = true
  162. end)
  163.  
  164. ReopenButton.MouseButton1Click:Connect(function()
  165. MainFrame.Visible = true
  166. ReopenButton.Visible = false
  167. end)
  168.  
  169. -- Close Button Functionality
  170. CloseButton.MouseButton1Click:Connect(function()
  171. ScreenGui:Destroy()
  172. end)
  173.  
  174. -- Ctrl Key to Toggle GUI
  175. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  176. if not gameProcessed and input.KeyCode == Enum.KeyCode.LeftControl then
  177. MainFrame.Visible = not MainFrame.Visible
  178. end
  179. end)
  180.  
Advertisement
Add Comment
Please, Sign In to add comment