Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- do
- wait(3)
- sg = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
- sg.Name = "treelands"
- fr = Instance.new("Frame", sg)
- fr.Size = UDim2.new(0.1, 0, 0.1, 0)
- fr.BackgroundColor3 = Color3.new(255, 255, 255)
- game.Workspace.Fruits:ClearAllChildren()
- tb = Instance.new("TextButton", fr)
- tb.BackgroundTransparency = 1
- tl = Instance.new("TextLabel", fr)
- tl.Size = UDim2.new(1, 0, 1, 0)
- tl.ZIndex = 3
- tl.Text = "put an apple in the store crate please"
- tl.BackgroundTransparency = 1
- tl.TextWrapped = true
- game.Workspace.Fruits:WaitForChild("Apple")
- tl:Destroy()
- tb.Text = "execute!"
- tb.Size = UDim2.new(1, 0, 1, 0)
- tb.MouseButton1Click:connect(function()
- local cv = Instance.new("IntValue", game.Workspace.Fruits.Apple)
- cv.Name = "CombinedValue"
- cv.Value = 49999999
- sg:Destroy()
- end)
- end
Add Comment
Please, Sign In to add comment