Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local NoobSimulatorGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local money = Instance.new("TextButton")
- local skill = Instance.new("TextButton")
- local rebirth = Instance.new("TextButton")
- --Properties:
- NoobSimulatorGui.Name = "Noob Simulator Gui"
- NoobSimulatorGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- NoobSimulatorGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = NoobSimulatorGui
- main.BackgroundColor3 = Color3.new(1, 1, 1)
- main.Position = UDim2.new(0.0208514314, 0, 0.00970873795, 0)
- main.Size = UDim2.new(0, 449, 0, 321)
- money.Name = "money"
- money.Parent = main
- money.BackgroundColor3 = Color3.new(0, 0.952941, 1)
- money.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
- money.Position = UDim2.new(0.265033394, 0, 0.0654205605, 0)
- money.Size = UDim2.new(0, 200, 0, 50)
- money.Text = "INF Money"
- money.TextColor3 = Color3.new(0, 0, 0)
- money.TextSize = 14
- money.MouseButton1Down:connect(function()
- local Remote = game.ReplicatedStorage.Events['AddSkillEvent']
- local Arguments = {
- [1] = 1,
- [2] = 123123123112121212
- }
- Remote:FireServer(unpack(Arguments))
- end)
- skill.Name = "skill"
- skill.Parent = main
- skill.BackgroundColor3 = Color3.new(0, 0.952941, 1)
- skill.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
- skill.Position = UDim2.new(0.262806207, 0, 0.292834878, 0)
- skill.Size = UDim2.new(0, 200, 0, 50)
- skill.Text = "INF Skill"
- skill.TextColor3 = Color3.new(0, 0, 0)
- skill.TextSize = 14
- skill.MouseButton1Down:connect(function()
- local Remote = game.ReplicatedStorage.Events['AddSkillEvent']
- local Arguments = {
- [1] = 13213123123,
- [2] = 1
- }
- Remote:FireServer(unpack(Arguments))
- end)
- rebirth.Name = "rebirth"
- rebirth.Parent = main
- rebirth.BackgroundColor3 = Color3.new(0, 0.952941, 1)
- rebirth.BorderColor3 = Color3.new(0.0313726, 0.419608, 1)
- rebirth.Position = UDim2.new(0.261881292, 0, 0.522740722, 0)
- rebirth.Size = UDim2.new(0, 200, 0, 50)
- rebirth.Text = "Rebirth"
- rebirth.TextColor3 = Color3.new(0, 0, 0)
- rebirth.TextSize = 14
- rebirth.MouseButton1Down:connect(function()
- local Remote = game.ReplicatedStorage.Events['RebirthEvent']
- local Arguments = {
- }
- Remote:FireServer(unpack(Arguments))
- end)
- -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement