Advertisement
RVZ_1

RR2

Nov 17th, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.67 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Frame_2 = Instance.new("Frame")
  6. local Money = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  15. Frame.BorderColor3 = Color3.new(0, 0, 0)
  16. Frame.Position = UDim2.new(0.136309519, 0, 0.59523809, 0)
  17. Frame.Size = UDim2.new(0, 320, 0, 204)
  18.  
  19. Frame_2.Parent = Frame
  20. Frame_2.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  21. Frame_2.BorderColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  22. Frame_2.Size = UDim2.new(0, 320, 0, 17)
  23.  
  24. Money.Name = "Money"
  25. Money.Parent = Frame
  26. Money.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Money.Position = UDim2.new(0.1875, 0, 0.289215684, 0)
  28. Money.Size = UDim2.new(0, 200, 0, 50)
  29. Money.Style = Enum.ButtonStyle.RobloxRoundButton
  30. Money.Font = Enum.Font.SourceSans
  31. Money.Text = "Money"
  32. Money.TextColor3 = Color3.new(0, 0, 0)
  33. Money.TextSize = 14
  34.  
  35. Money.MouseButton1Down:connect(function()
  36. Game.Players.LocalPlayer.PlayerGui.TomCarsGunStore.Shop.Event:FireServer(Game.Workspace.TomCars.Desk.Script.TomCarsGunStore.Shop,-9999999999999,1,1)
  37. end)
  38.  
  39. TextLabel.Parent = Frame
  40. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  41. TextLabel.BackgroundTransparency = 1
  42. TextLabel.BorderColor3 = Color3.new(1, 1, 1)
  43. TextLabel.BorderSizePixel = 2
  44. TextLabel.Position = UDim2.new(0.1875, 0, 0.573529422, 0)
  45. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  46. TextLabel.Font = Enum.Font.SourceSans
  47. TextLabel.Text = "Before Click 'Money' Go to the car shop"
  48. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  49. TextLabel.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement