Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- We create the screenGui
- Main = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
- -- We create and define the first frame!
- Frame1 = Instance.new("Frame",Main)
- Frame1.Position = UDim2.new(0.3, 0, 0.3, 0)
- Frame1.Size = UDim2.new(0, 450, 0, 350)
- Frame1.BackgroundColor3 = Color3.new(0.0196,0.0156,0.0117)
- Frame1.BorderColor3 = Color3.new(0.403,0.643,1)
- Frame1.BackgroundTransparency = 0.3
- Frame1.Draggable = true
- Frame1.Visible = false
- -- We create and define the second frame!
- Frame2 = Instance.new("ScrollingFrame",Frame1)
- Frame2.Name = "Main"
- Frame2.Position = UDim2.new(0., 0, 0.13, 0)
- Frame2.Size = UDim2.new(0, 450, 0, 302)
- Frame2.BackgroundColor3 = Color3.new(0,0,0)
- Frame2.BorderColor3 = Color3.new(0,0,0)
- Frame2.BackgroundTransparency = 0.6
- -- Now lets add the buttons and define them
- Assas = Instance.new("TextButton",Frame2)
- Assas.Name = "RoMoney"
- Assas.BackgroundColor3 = Color3.new(1, 1, 1)
- Assas.Position = UDim2.new(0, 0, 0.24, 0)
- Assas.Size = UDim2.new(0, 200, 0, 50)
- Assas.Font = 'SourceSansBold'
- Assas.FontSize = 14
- Assas.TextSize = 14
- Assas.TextScaled = true
- Assas.TextWrapped = true
- Assas.Text = "Rocitizen Money"
- Assas.BackgroundTransparency = 0.6
- Assas.AutoButtonColor = true
- Assas.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.ChangeMoney:Fire(2000000000)
- end)
- ---------------------------------
- LT2 = Instance.new("TextButton",Frame2)
- LT2.Name = "LT2"
- LT2.BackgroundColor3 = Color3.new(1, 1, 1)
- LT2.Position = UDim2.new(0, 0, 0, 0)
- LT2.Size = UDim2.new(0, 200, 0, 50)
- LT2.Font = 'SourceSansBold'
- LT2.FontSize = 14
- LT2.TextSize = 14
- LT2.TextScaled = true
- LT2.TextWrapped = true
- LT2.Text = "LT2 Base Dupe"
- LT2.BackgroundTransparency = 0.6
- LT2.AutoButtonColor = true
- LT2.BorderSizePixel = 3
- LT2.MouseButton1Down:connect(function()
- game.ReplicatedStorage.LoadSaveRequests.RequestSave:InvokeServer(2,Game.Players[LocalPlayer])
- end)
- ---------------------------------
- TPM = Instance.new("TextButton",Frame2)
- TPM.Name = "TPM"
- TPM.BackgroundColor3 = Color3.new(1, 1, 1)
- TPM.Position = UDim2.new(0, 0, 0.08, 0)
- TPM.Size = UDim2.new(0, 200, 0, 50)
- TPM.Font = 'SourceSansBold'
- TPM.FontSize = 14
- TPM.TextSize = 14
- TPM.TextScaled = true
- TPM.TextWrapped = true
- TPM.Text = "The Plaza Money"
- TPM.BackgroundTransparency = 0.6
- TPM.AutoButtonColor = true
- TPM.BorderSizePixel = 3
- TPM.MouseButton1Down:connect(function()
- game.ReplicatedStorage.ServerStats.ChangeMoney:FireServer(1000000, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
- end)
- ---------------------------------
- Ftof = Instance.new("TextButton",Frame2)
- Ftof.Name = "Ftof"
- Ftof.BackgroundColor3 = Color3.new(1, 1, 1)
- Ftof.Position = UDim2.new(0, 0, 0.16, 0)
- Ftof.Size = UDim2.new(0, 200, 0, 50)
- Ftof.Font = 'SourceSansBold'
- Ftof.FontSize = 14
- Ftof.TextSize = 14
- Ftof.TextScaled = true
- Ftof.TextWrapped = true
- Ftof.Text = "FTOF Custom Magic"
- Ftof.BackgroundTransparency = 0.6
- Ftof.AutoButtonColor = true
- Ftof.BorderSizePixel = 3
- Ftof.MouseButton1Down:connect(function()
- local Children = game.Lighting.Customs.armyranger2172:GetChildren()
- for i = 1, #Children do
- Children[i]:Clone().Parent = game.Players.LocalPlayer.Backpack
- end
- end)
- -- Lets add the seperator now!
- Sep = Instance.new("Frame",Frame1)
- Sep.Name = 'Seperator'
- Sep.Position = UDim2.new(0, 0, 0, 0)
- Sep.Size = UDim2.new(0, 450, 0, 50)
- Sep.BackgroundColor3 = Color3.new(0,0,0)
- Sep.BorderColor3 = Color3.new(0,0,0)
- Sep.BackgroundTransparency = 100
- Sep.BorderSizePixel = 3
- --Now The title...
- Titl = Instance.new("TextLabel",Frame1)
- Titl.Name = 'Title'
- Titl.BackgroundColor3 = Color3.new(1,1,1)
- Titl.BorderColor3 = Color3.new(1,1,1)
- Titl.Position = UDim2.new(0, 0, 0, 0)
- Titl.Size = UDim2.new(0, 450, 0, 40)
- Titl.Text= 'InGame Scripts'
- Titl.FontSize = "Size18"
- Titl.TextSize = 18
- Titl.TextScaled = true
- Titl.TextWrapped = true
- Titl.Font = 'SourceSansBold'
- Titl.BackgroundTransparency = 0.6
- Titl.BorderSizePixel = 3
- Titl.TextColor3 = Color3.new(1,1,1)
- --Now for the Open Button
- Ope = Instance.new("TextButton",Main)
- Ope.BackgroundColor3 = Color3.new(0,0.8196,1)
- Ope.BorderColor3 = Color3.new(0,0,0)
- Ope.Name = 'Open'
- Ope.Size = UDim2.new(0.154, 0, 0.076, 0)
- Ope.Position = UDim2.new(0.83, 0, 0.393, 0)
- Ope.Font = 'SourceSansLight'
- Ope.FontSize = 'Size60'
- Ope.TextSize = 60
- Ope.TextScaled = false
- Ope.TextWrapped = true
- Ope.Text = "Open!"
- Ope.BackgroundTransparency = 0.3
- Ope.AutoButtonColor = true
- Ope.Draggable = true
- Ope.MouseButton1Down:connect(function()
- Frame1.Visible = true
- end)
- --Finally for the Close Button!
- Clo = Instance.new("TextButton",Frame1)
- Clo.BackgroundColor3 = Color3.new(0.2627,0.6431,1)
- Clo.BorderColor3 = Color3.new(0.3137,0.5529,1)
- Clo.Name = 'Close'
- Clo.Size = UDim2.new(0, 40, 0, 40)
- Clo.Position = UDim2.new(0.91, 0, 0, 0)
- Clo.Font = 'SourceSansBold'
- Clo.FontSize = 'Size14'
- Clo.TextSize = 14
- Clo.TextScaled = true
- Clo.TextWrapped = true
- Clo.Text = "X"
- Clo.BackgroundTransparency = 0
- Clo.AutoButtonColor = true
- Clo.BorderSizePixel = 3
- Clo.Style = 'RobloxRoundDefaultButton'
- Clo.MouseButton1Down:connect(function()
- Frame1.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement