Advertisement
rayanfrfr

Millionaire Empire Tycoon Inf Money Script

Feb 11th, 2022
4,915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.85 KB | None | 0 0
  1. --By rayanfrfr#9999
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local givemoney = Instance.new("TextButton")
  7. local credit = Instance.new("TextLabel")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. main.Name = "main"
  15. main.Parent = ScreenGui
  16. main.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  17. main.Position = UDim2.new(0.781831741, 0, 0.511229932, 0)
  18. main.Size = UDim2.new(0, 276, 0, 335)
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. label.Name = "label"
  23. label.Parent = main
  24. label.BackgroundColor3 = Color3.fromRGB(83, 83, 83)
  25. label.Size = UDim2.new(0, 276, 0, 50)
  26. label.Font = Enum.Font.SourceSans
  27. label.Text = "Millionaire Empire Tycoon OP SCRIPT"
  28. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. label.TextSize = 20.000
  30.  
  31. givemoney.Name = "givemoney"
  32. givemoney.Parent = main
  33. givemoney.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
  34. givemoney.Position = UDim2.new(0.137681156, 0, 0.289552212, 0)
  35. givemoney.Size = UDim2.new(0, 199, 0, 163)
  36. givemoney.Font = Enum.Font.SourceSans
  37. givemoney.Text = "+50T $"
  38. givemoney.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. givemoney.TextSize = 86.000
  40. givemoney.MouseButton1Down:Connect(function()
  41. local args = {
  42.     [1] = "Cash",
  43.     [2] = 500000000000000
  44. }
  45.  
  46. game:GetService("ReplicatedStorage").Events.CrateClaim:FireServer(unpack(args))
  47.  
  48. end)
  49.  
  50. credit.Name = "credit"
  51. credit.Parent = main
  52. credit.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  53. credit.BorderColor3 = Color3.fromRGB(56, 56, 56)
  54. credit.Position = UDim2.new(0.293478251, 0, 0.874626935, 0)
  55. credit.Size = UDim2.new(0, 195, 0, 42)
  56. credit.Font = Enum.Font.SourceSans
  57. credit.LineHeight = 0.000
  58. credit.Text = "created by rayanfrfr#9999"
  59. credit.TextColor3 = Color3.fromRGB(0, 0, 0)
  60. credit.TextSize = 22.000
  61. credit.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement