Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextBox = Instance.new("TextBox")
- local execute = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.Position = UDim2.new(0.29908973, 0, 0.389662027, 0)
- Frame.Size = UDim2.new(0, 344, 0, 139)
- Frame.Active = true
- Frame.Draggable =true
- TextBox.Parent = Frame
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.Position = UDim2.new(0.0297419522, 0, 0.218818933, 0)
- TextBox.Size = UDim2.new(0, 322, 0, 50)
- TextBox.ClearTextOnFocus = false
- TextBox.Font = Enum.Font.SourceSansBold
- TextBox.Text = "Script Here"
- TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.TextSize = 20.000
- TextBox.TextWrapped = true
- execute.Name = "execute"
- execute.Parent = Frame
- execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- execute.Position = UDim2.new(0.206919134, 0, 0.653438747, 0)
- execute.Size = UDim2.new(0, 200, 0, 41)
- execute.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- execute.Font = Enum.Font.SourceSansBold
- execute.Text = "execute"
- execute.TextColor3 = Color3.fromRGB(0, 0, 0)
- execute.TextSize = 21.000
- execute.MouseButton1Down:connect(function()
- loadstring(TextBox.Text)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement