Advertisement
LordOfCats

Tree Lands Silver

Dec 15th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. -- TreeLands GUI
  2. -- By LordOfCatsPlayz
  3. -- This didnt crash my computer :P
  4. local FreeLands = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Frame = Instance.new("Frame")
  7. local Frame_2 = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Start = Instance.new("TextButton")
  10. local close = Instance.new("TextButton")
  11. local mini = Instance.new("Frame")
  12. local TextButton = Instance.new("TextButton")
  13. --ok lol
  14. FreeLands.Name = "FreeLands"
  15. FreeLands.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. Main.Name = "Main"
  18. Main.Parent = FreeLands
  19. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  20. Main.Position = UDim2.new(0.378402144, 0, 0.389065444, 0)
  21. Main.Size = UDim2.new(0, 331, 0, 170)
  22. Main.Draggable = true
  23.  
  24. Frame.Parent = Main
  25. Frame.BackgroundColor3 = Color3.new(0, 0.317647, 1)
  26. Frame.Position = UDim2.new(-0.0352067947, 0, 0.00111204386, 0)
  27. Frame.Size = UDim2.new(0, 354, 0, 14)
  28.  
  29. Frame_2.Parent = Main
  30. Frame_2.BackgroundColor3 = Color3.new(0, 0.317647, 1)
  31. Frame_2.Position = UDim2.new(-0.035206791, 0, 0.916872442, 0)
  32. Frame_2.Size = UDim2.new(0, 354, 0, 14)
  33.  
  34. TextLabel.Parent = Main
  35. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextLabel.BorderSizePixel = 0
  37. TextLabel.Position = UDim2.new(0.196571618, 0, 0.293197334, 0)
  38. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  39. TextLabel.Font = Enum.Font.SciFi
  40. TextLabel.Text = "Freelands"
  41. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  42. TextLabel.TextScaled = true
  43. TextLabel.TextSize = 14
  44. TextLabel.TextWrapped = true
  45.  
  46. Start.Name = "Start"
  47. Start.Parent = Main
  48. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Start.Position = UDim2.new(0.271463722, 0, 0.588235319, 0)
  50. Start.Size = UDim2.new(0, 150, 0, 31)
  51. Start.Font = Enum.Font.SourceSans
  52. Start.Text = "Gimmie em silvers"
  53. Start.TextColor3 = Color3.new(0, 0, 0)
  54. Start.TextSize = 14
  55. Start.MouseButton1Down:connect(function()
  56. local xd = game.Workspace.Fruits
  57. xd.Apple.CombinedValue.Value = 1333337
  58. end)
  59.  
  60. close.Name = "close"
  61. close.Parent = Main
  62. close.BackgroundColor3 = Color3.new(1, 1, 1)
  63. close.BorderSizePixel = 0
  64. close.Position = UDim2.new(0, 0, 0.141176477, 0)
  65. close.Size = UDim2.new(0, 24, 0, 18)
  66. close.Font = Enum.Font.SourceSans
  67. close.Text = "X"
  68. close.TextColor3 = Color3.new(1, 0.333333, 0)
  69. close.TextScaled = true
  70. close.TextSize = 14
  71. close.TextWrapped = true
  72. close.MouseButton1Down:connect(function()
  73. mini.Visible = true
  74. Main.Visible = false
  75. end)
  76.  
  77. mini.Name = "mini"
  78. mini.Parent = FreeLands
  79. mini.BackgroundColor3 = Color3.new(1, 1, 1)
  80. mini.Position = UDim2.new(0, 0, 0.461979926, 0)
  81. mini.Size = UDim2.new(0, 100, 0, 39)
  82.  
  83. TextButton.Parent = mini
  84. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  85. TextButton.BorderSizePixel = 0
  86. TextButton.Position = UDim2.new(0.0500000007, 0, 0.179487348, 0)
  87. TextButton.Size = UDim2.new(0, 89, 0, 25)
  88. TextButton.Font = Enum.Font.SourceSans
  89. TextButton.Text = "OPEN"
  90. TextButton.TextColor3 = Color3.new(0, 0, 1)
  91. TextButton.TextSize = 14
  92. TextButton.TextStrokeColor3 = Color3.new(0, 0, 1)
  93. TextButton.TextWrapped = true
  94. TextButton.MouseButton1Down:connect(function()
  95. Main.Visible = true
  96. mini.Visible = false
  97. end)
  98. -- oh hello there
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement