liamglitches

RoCitizens Inf Money GUI by NotJimbo#7666

May 3rd, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. -- GUI made by LiamGlitchesYT
  2. -- My Discord: NotJimbo#7666
  3. -- My V3RM: NotJimbo
  4. -- My YT: LiamGlitchesYT
  5.  
  6. local gui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local top = Instance.new("Frame")
  9. local title = Instance.new("TextLabel")
  10. local discord = Instance.new("TextLabel")
  11. local gimmemoney = Instance.new("TextButton")
  12. local invitecode = Instance.new("TextLabel")
  13.  
  14. -- Properties
  15.  
  16. gui.Name = "gui"
  17. gui.Parent = game.StarterGui
  18.  
  19. main.Name = "main"
  20. main.Parent = gui
  21. main.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  22. main.BorderSizePixel = 0
  23. main.Position = UDim2.new(0.0179076344, 0, 0.612052739, 0)
  24. main.Size = UDim2.new(0, 259, 0, 191)
  25. main.Active = true
  26. main.Draggable = true
  27.  
  28. top.Name = "top"
  29. top.Parent = main
  30. top.BackgroundColor3 = Color3.new(1, 1, 1)
  31. top.Size = UDim2.new(0, 259, 0, 62)
  32.  
  33. title.Name = "title"
  34. title.Parent = top
  35. title.BackgroundColor3 = Color3.new(1, 1, 1)
  36. title.BackgroundTransparency = 1
  37. title.BorderSizePixel = 0
  38. title.Position = UDim2.new(0.111969098, 0, 0.0928897262, 0)
  39. title.Size = UDim2.new(0, 200, 0, 50)
  40. title.Font = Enum.Font.Highway
  41. title.Text = "RoCitizens Money GUI"
  42. title.TextSize = 30
  43.  
  44. discord.Name = "discord"
  45. discord.Parent = top
  46. discord.BackgroundColor3 = Color3.new(1, 1, 1)
  47. discord.BackgroundTransparency = 1
  48. discord.BorderSizePixel = 0
  49. discord.Position = UDim2.new(0.474903464, 0, 0.483870953, 0)
  50. discord.Size = UDim2.new(0, 200, 0, 50)
  51. discord.Font = Enum.Font.SourceSans
  52. discord.Text = "Jimbo#9089"
  53. discord.TextSize = 14
  54.  
  55. gimmemoney.Name = "gimmemoney"
  56. gimmemoney.Parent = main
  57. gimmemoney.BackgroundColor3 = Color3.new(1, 1, 1)
  58. gimmemoney.BorderSizePixel = 0
  59. gimmemoney.Position = UDim2.new(0.111969113, 0, 0.502617776, 0)
  60. gimmemoney.Size = UDim2.new(0, 200, 0, 50)
  61. gimmemoney.Font = Enum.Font.SourceSans
  62. gimmemoney.Text = "Gimme Money"
  63. gimmemoney.TextSize = 40
  64.  
  65. invitecode.Name = "invitecode"
  66. invitecode.Parent = main
  67. invitecode.BackgroundColor3 = Color3.new(1, 1, 1)
  68. invitecode.BackgroundTransparency = 1
  69. invitecode.BorderSizePixel = 0
  70. invitecode.Position = UDim2.new(0, 0, 0.324607313, 0)
  71. invitecode.Size = UDim2.new(0, 259, 0, 27)
  72. invitecode.Font = Enum.Font.SourceSans
  73. invitecode.Text = "https://discordapp.com/invite/CbNtdRJ"
  74. invitecode.TextColor3 = Color3.new(1, 1, 1)
  75. invitecode.TextScaled = true
  76. invitecode.TextSize = 18
  77. invitecode.TextWrapped = true
  78.  
  79. gimmemoney.MouseButton1Click:Connect(function()
  80. game.Players.LocalPlayer.ChangeMoney:Fire(200000000)
  81. end)
Add Comment
Please, Sign In to add comment