Advertisement
Guest User

gggsgsg

a guest
Feb 17th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local MoneyChecker = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("Frame")
  6. local egerge = Instance.new("TextLabel")
  7. local username = Instance.new("TextBox")
  8. local check = Instance.new("TextButton")
  9. local tdhrthtr = Instance.new("TextLabel")
  10. local moneystatus = Instance.new("TextLabel")
  11. --Properties:
  12. MoneyChecker.Name = "MoneyChecker"
  13. MoneyChecker.Parent = game.CoreGui
  14. MoneyChecker.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. MainFrame.Name = "MainFrame"
  17. MainFrame.Parent = MoneyChecker
  18. MainFrame.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  19. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  20. MainFrame.Position = UDim2.new(0.447690308, 0, 0.360836089, 0)
  21. MainFrame.Size = UDim2.new(0, 286, 0, 113)
  22.  
  23. egerge.Name = "egerge"
  24. egerge.Parent = MainFrame
  25. egerge.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  26. egerge.BorderColor3 = Color3.new(0, 0, 0)
  27. egerge.Size = UDim2.new(0, 286, 0, 23)
  28. egerge.Font = Enum.Font.GothamBlack
  29. egerge.Text = " Money Checker"
  30. egerge.TextColor3 = Color3.new(1, 1, 1)
  31. egerge.TextSize = 16
  32. egerge.TextXAlignment = Enum.TextXAlignment.Left
  33.  
  34. username.Name = "username"
  35. username.Parent = MainFrame
  36. username.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  37. username.Position = UDim2.new(0.192307681, 0, 0.362831861, 0)
  38. username.Size = UDim2.new(0, 175, 0, 16)
  39. username.Font = Enum.Font.SourceSans
  40. username.PlaceholderColor3 = Color3.new(1, 1, 1)
  41. username.PlaceholderText = "[Player Name]"
  42. username.Text = ""
  43. username.TextColor3 = Color3.new(0, 0, 0)
  44. username.TextSize = 14
  45.  
  46. check.Name = "check"
  47. check.Parent = MainFrame
  48. check.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  49. check.Position = UDim2.new(0.150349647, 0, 0.566371679, 0)
  50. check.Size = UDim2.new(0, 200, 0, 18)
  51. check.Font = Enum.Font.GothamBlack
  52. check.Text = "Check Money"
  53. check.TextColor3 = Color3.new(1, 1, 1)
  54. check.TextSize = 14
  55.  
  56. tdhrthtr.Name = "tdhrthtr"
  57. tdhrthtr.Parent = MainFrame
  58. tdhrthtr.BackgroundColor3 = Color3.new(1, 1, 1)
  59. tdhrthtr.BackgroundTransparency = 1
  60. tdhrthtr.Position = UDim2.new(0.0664335638, 0, 0.814159274, 0)
  61. tdhrthtr.Size = UDim2.new(0, 89, 0, 14)
  62. tdhrthtr.Font = Enum.Font.GothamBlack
  63. tdhrthtr.Text = "Players Money:"
  64. tdhrthtr.TextColor3 = Color3.new(1, 1, 1)
  65. tdhrthtr.TextSize = 14
  66.  
  67. moneystatus.Name = "moneystatus"
  68. moneystatus.Parent = MainFrame
  69. moneystatus.BackgroundColor3 = Color3.new(1, 1, 1)
  70. moneystatus.BackgroundTransparency = 1
  71. moneystatus.Position = UDim2.new(0.412587404, 0, 0.814159274, 0)
  72. moneystatus.Size = UDim2.new(0, 125, 0, 14)
  73. moneystatus.Font = Enum.Font.GothamBlack
  74. moneystatus.Text = "0"
  75. moneystatus.TextColor3 = Color3.new(1, 1, 1)
  76. moneystatus.TextSize = 14
  77. -- Scripts:
  78. check.MouseButton1Down:connect(function()
  79. moneystatus.Text = game.Players[username.Text].Money.Value
  80. end)
  81.  
  82. MainFrame.Selectable = true
  83. MainFrame.Active = true
  84. MainFrame.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement