Advertisement
Sharkkkkkk

FiendHub

Aug 9th, 2020 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local Frame = Instance.new("Frame")
  5. local Minimize = Instance.new("TextButton")
  6.  
  7. --[[
  8. Properties:
  9. --]]
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. MainFrame.Name = "MainFrame"
  14. MainFrame.Parent = ScreenGui
  15. MainFrame.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  16. MainFrame.BorderSizePixel = 0
  17. MainFrame.Position = UDim2.new(0.29437685, 0, 0.276084304, 0)
  18. MainFrame.Size = UDim2.new(0, 431, 0, 25)
  19. Main.Active = true
  20. Main.Draggable = true
  21.  
  22. TextLabel.Parent = MainFrame
  23. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  24. TextLabel.BackgroundTransparency = 1
  25. TextLabel.Position = UDim2.new(0.0672853813, 0, -0.519999981, 0)
  26. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  27. TextLabel.Font = Enum.Font.Gotham
  28. TextLabel.Text = "Fiend Hub - Undetected Game"
  29. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  30. TextLabel.TextSize = 17
  31.  
  32. Frame.Parent = MainFrame
  33. Frame.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  34. Frame.BorderSizePixel = 0
  35. Frame.Position = UDim2.new(0, 0, 1, 0)
  36. Frame.Size = UDim2.new(0, 431, 0, 242)
  37.  
  38. Minimize.Name = "Minimize"
  39. Minimize.Parent = MainFrame
  40. Minimize.BackgroundColor3 = Color3.new(1, 1, 1)
  41. Minimize.BackgroundTransparency = 1
  42. Minimize.Position = UDim2.new(0.918793499, 0, 0, 0)
  43. Minimize.Size = UDim2.new(0, 35, 0, 25)
  44. Minimize.Font = Enum.Font.Gotham
  45. Minimize.Text = "-"
  46. Minimize.TextColor3 = Color3.new(1, 1, 1)
  47. Minimize.TextSize = 30
  48. Minimize.MouseButton1Click:Connect(function()
  49. Frame:TweenSize(UDim2.new(1,1,1,1))
  50. wait(1)
  51. Frame.Visible = false
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement