Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made By Huehie
- local GuiService = Instance.new("ScreenGui")
- local Menu = Instance.new("TextButton")
- local Chat = Instance.new("Frame")
- local MenuBG = Instance.new("ImageLabel")
- local Close = Instance.new("TextButton")
- local AddMoney = Instance.new("TextButton")
- -- Properties
- GuiService.Name = "Gui Service"
- GuiService.Parent = game.CoreGui
- Menu.Name = "Menu"
- Menu.Parent = GuiService
- Menu.BackgroundColor3 = Color3.new(139, 0, 0)
- Menu.BackgroundTransparency = 0.4
- Menu.BorderSizePixel = 0
- Menu.Position = UDim2.new(0, 323, 0, 0)
- Menu.Size = UDim2.new(0, 60, 0, 20)
- Menu.Font = Enum.Font.SourceSansLight
- Menu.FontSize = Enum.FontSize.Size18
- Menu.Text = "Menu"
- Menu.TextColor3 = Color3.new(1, 1, 1)
- Open = false
- Chat.Name = "Chat"
- Chat.Parent = GuiService
- Chat.Active = true
- Chat.BackgroundColor3 = Color3.new(1, 1, 1)
- Chat.BackgroundTransparency = 1
- Chat.Draggable = true
- Chat.Position = UDim2.new(0.28, 000, 0.55, 1000)
- Chat.Selectable = true
- Chat.Size = UDim2.new(0, 537, 0, 56)
- Chat.Visible = false
- MenuBG.Name = "MenuBG"
- MenuBG.Parent = Chat
- MenuBG.BackgroundColor3 = Color3.new(1, 1, 1)
- MenuBG.BackgroundTransparency = 1
- MenuBG.Size = UDim2.new(0, 593, 0, 361)
- MenuBG.Image = "rbxassetid://121901318"
- MenuBG.ImageTransparency = 0.10000000149012
- Close.Name = "Close"
- Close.Parent = Chat
- Close.BackgroundColor3 = Color3.new(1, 1, 1)
- Close.BackgroundTransparency = 1
- Close.Position = UDim2.new(0, 540, 0, 40)
- Close.Size = UDim2.new(0, 40, 0, 28)
- Close.Font = Enum.Font.SourceSans
- Close.FontSize = Enum.FontSize.Size14
- Close.TextTransparency = 1
- Close.MouseButton1Down:connect(function(open)
- Chat:TweenPosition(UDim2.new(0.28, 0, 1.0, 1000), "In", "Sine",1,true)
- Open = false
- end)
- Menu.MouseButton1Down:connect(function(open)
- if Open == false then
- Chat.Visible = true
- Chat:TweenPosition(UDim2.new(0.28, 0, 0.55, -250), "Out", "Back",1.5,true)
- Open = true
- elseif Open == true then
- Chat:TweenPosition(UDim2.new(0.28, 0, 1.0, 1000), "In", "Sine",1,true)
- Open = false
- end
- end)
- AddMoney.Name = "Add Money"
- AddMoney.Parent = Chat
- AddMoney.BackgroundColor3 = Color3.new(139, 0, 0)
- AddMoney.BackgroundTransparency = 0.4
- AddMoney.BorderSizePixel = 0
- AddMoney.Position = UDim2.new(0, 225, 0, 125)
- AddMoney.Size = UDim2.new(0, 150, 0, 125)
- AddMoney.Font = Enum.Font.SourceSansLight
- AddMoney.FontSize = Enum.FontSize.Size14
- AddMoney.Text = "Add $2500 (go to Airport)"
- AddMoney.TextColor3 = Color3.new(1, 1, 1)
- AddMoney.TextStrokeColor3 = Color3.new(1, 1, 1)
- AddMoney.MouseButton1Down:connect(function(open)
- while wait() do
- game.ReplicatedStorage.serverRF:InvokeServer("Delivery")
- wait(0.1)
- game.Workspace.Delivery.Main.Click:FireServer()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement