Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local BasicSS = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- local TextBox = Instance.new("TextBox")
- local execute = Instance.new("TextButton")
- local clear = Instance.new("TextButton")
- --Properties:
- BasicSS.Name = "Basic SS"
- BasicSS.Parent = game.CoreGui
- BasicSS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = BasicSS
- main.BackgroundColor3 = Color3.fromRGB(109, 254, 56)
- main.Position = UDim2.new(0.355839401, 0, 0.139165014, 0)
- main.Size = UDim2.new(0, 421, 0, 267)
- main.Active = true
- main.Draggable = true
- label.Name = "label"
- label.Parent = main
- label.BackgroundColor3 = Color3.fromRGB(82, 255, 93)
- label.Size = UDim2.new(0, 421, 0, 33)
- label.Font = Enum.Font.SourceSans
- label.Text = "Basic SS"
- label.TextColor3 = Color3.fromRGB(0, 0, 0)
- label.TextScaled = true
- label.TextSize = 14.000
- label.TextWrapped = true
- TextBox.Parent = main
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.Position = UDim2.new(0.0142517816, 0, 0.167999998, 0)
- TextBox.Size = UDim2.new(0, 409, 0, 158)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.Text = "-- script here"
- TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.TextSize = 19.000
- TextBox.TextWrapped = true
- TextBox.TextXAlignment = Enum.TextXAlignment.Left
- TextBox.TextYAlignment = Enum.TextYAlignment.Top
- execute.Name = "execute"
- execute.Parent = main
- execute.BackgroundColor3 = Color3.fromRGB(74, 186, 0)
- execute.Position = UDim2.new(0.035629455, 0, 0.801498115, 0)
- execute.Size = UDim2.new(0, 165, 0, 40)
- execute.Font = Enum.Font.SourceSans
- execute.Text = "execute"
- execute.TextColor3 = Color3.fromRGB(0, 0, 0)
- execute.TextScaled = true
- execute.TextSize = 14.000
- execute.TextWrapped = true
- clear.Name = "clear"
- clear.Parent = main
- clear.BackgroundColor3 = Color3.fromRGB(74, 186, 0)
- clear.Position = UDim2.new(0.572446585, 0, 0.801498115, 0)
- clear.Size = UDim2.new(0, 165, 0, 40)
- clear.Font = Enum.Font.SourceSans
- clear.Text = "clear"
- clear.TextColor3 = Color3.fromRGB(0, 0, 0)
- clear.TextScaled = true
- clear.TextSize = 14.000
- clear.TextWrapped = true
- execute.MouseButton1Click:connect(function()
- game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
- end)
- clear.MouseButton1Click:connect(function()
- TextBox.Text = ""
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement