scripterhaxer

treelands silver script Money Money

Nov 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. do
  2. wait(3)
  3. sg = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  4. sg.Name = "treelands"
  5. fr = Instance.new("Frame", sg)
  6. fr.Size = UDim2.new(0.1, 0, 0.1, 0)
  7. fr.BackgroundColor3 = Color3.new(255, 255, 255)
  8. game.Workspace.Fruits:ClearAllChildren()
  9. tb = Instance.new("TextButton", fr)
  10. tb.BackgroundTransparency = 1
  11. tl = Instance.new("TextLabel", fr)
  12. tl.Size = UDim2.new(1, 0, 1, 0)
  13. tl.ZIndex = 3
  14. tl.Text = "put an apple in the store crate please"
  15. tl.BackgroundTransparency = 1
  16. tl.TextWrapped = true
  17. game.Workspace.Fruits:WaitForChild("Apple")
  18. tl:Destroy()
  19. tb.Text = "execute!"
  20. tb.Size = UDim2.new(1, 0, 1, 0)
  21. tb.MouseButton1Click:connect(function()
  22. local cv = Instance.new("IntValue", game.Workspace.Fruits.Apple)
  23. cv.Name = "CombinedValue"
  24. cv.Value = 49999999
  25. sg:Destroy()
  26. end)
  27. end
Add Comment
Please, Sign In to add comment