Advertisement
Adel987654321

Noob simulator Gui

Dec 13th, 2019
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. local NoobSimulatorGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local money = Instance.new("TextButton")
  4. local skill = Instance.new("TextButton")
  5. local rebirth = Instance.new("TextButton")
  6. --Properties:
  7. NoobSimulatorGui.Name = "Noob Simulator Gui"
  8. NoobSimulatorGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9. NoobSimulatorGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. main.Name = "main"
  12. main.Parent = NoobSimulatorGui
  13. main.BackgroundColor3 = Color3.new(1, 1, 1)
  14. main.Position = UDim2.new(0.0208514314, 0, 0.00970873795, 0)
  15. main.Size = UDim2.new(0, 449, 0, 321)
  16.  
  17. money.Name = "money"
  18. money.Parent = main
  19. money.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  20. money.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
  21. money.Position = UDim2.new(0.265033394, 0, 0.0654205605, 0)
  22. money.Size = UDim2.new(0, 200, 0, 50)
  23. money.Text = "INF Money"
  24. money.TextColor3 = Color3.new(0, 0, 0)
  25. money.TextSize = 14
  26. money.MouseButton1Down:connect(function()
  27. local Remote = game.ReplicatedStorage.Events['AddSkillEvent']
  28.  
  29. local Arguments = {
  30. [1] = 1,
  31. [2] = 123123123112121212
  32. }
  33.  
  34. Remote:FireServer(unpack(Arguments))
  35. end)
  36.  
  37. skill.Name = "skill"
  38. skill.Parent = main
  39. skill.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  40. skill.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
  41. skill.Position = UDim2.new(0.262806207, 0, 0.292834878, 0)
  42. skill.Size = UDim2.new(0, 200, 0, 50)
  43. skill.Text = "INF Skill"
  44. skill.TextColor3 = Color3.new(0, 0, 0)
  45. skill.TextSize = 14
  46. skill.MouseButton1Down:connect(function()
  47. local Remote = game.ReplicatedStorage.Events['AddSkillEvent']
  48.  
  49. local Arguments = {
  50. [1] = 13213123123,
  51. [2] = 1
  52. }
  53.  
  54. Remote:FireServer(unpack(Arguments))
  55. end)
  56.  
  57. rebirth.Name = "rebirth"
  58. rebirth.Parent = main
  59. rebirth.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  60. rebirth.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
  61. rebirth.Position = UDim2.new(0.261881292, 0, 0.522740722, 0)
  62. rebirth.Size = UDim2.new(0, 200, 0, 50)
  63. rebirth.Text = "Rebirth"
  64. rebirth.TextColor3 = Color3.new(0, 0, 0)
  65. rebirth.TextSize = 14
  66. rebirth.MouseButton1Down:connect(function()
  67. local Remote = game.ReplicatedStorage.Events['RebirthEvent']
  68.  
  69. local Arguments = {
  70.  
  71. }
  72.  
  73. Remote:FireServer(unpack(Arguments))
  74. end)
  75. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement