Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local PGui = player.PlayerGui
- game.ServerScriptService.LoadStringEnabled = true
- wait()
- local RC8 = Instance.new("ScreenGui",PGui)
- local white = Color3.fromRGB(255, 255, 255)
- local frame1 = Instance.new("Frame",RC8)
- frame1.Size = UDim2.new(0, 238,0, 206)
- frame1.BackgroundColor3 = white
- local codeframe = Instance.new("ScrollingFrame",frame1)
- codeframe.Size = UDim2.new(1, 0,0.8, 0)
- codeframe.BackgroundColor3 = white
- codeframe.BottomImage = "http://www.roblox.com/asset/?id=23666858"
- codeframe.MidImage = "http://www.roblox.com/asset/?id=23666858"
- codeframe.TopImage = "http://www.roblox.com/asset/?id=23666858"
- codeframe.CanvasSize = UDim2.new(0,0,570,0)
- local Text = Instance.new("TextBox",codeframe)
- Text.Size = UDim2.new(0.626, -371,3, 318)
- Text.Position = UDim2.new(0, 222,0, 0)
- Text.FontSize = 6
- Text.BackgroundColor3 = white
- Text.Text = ""
- Text.Font = "SourceSans"
- Text.TextSize = 24
- Text.TextWrapped = true
- Text.TextXAlignment = "Left"
- Text.TextYAlignment = "Top"
- Text.ClearTextOnFocus = false
- Text.MultiLine = true
- local Exe = Instance.new("TextButton",frame1)
- Exe.Text = "Execute"
- Exe.Name = "Exe"
- Exe.TextScaled = true
- Exe.Size = UDim2.new(0.3,0,0.2,0)
- Exe.Position = UDim2.new(0,0,0.8,0)
- local Clear = Instance.new("TextButton",frame1)
- Clear.Text = "Clear"
- Clear.Name = "Clear"
- Clear.TextScaled = true
- Clear.Size = UDim2.new(0.3,0,0.2,0)
- Clear.Position = UDim2.new(0.4,0,0.8,0)
- Exe.MouseButton1Down:connect(function()
- if Text.Text then
- loadstring(Text.Text)()
- end
- end)
- Clear.MouseButton1Down:connect(function()
- Text.Text = ""
- end)
Add Comment
Please, Sign In to add comment