Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- i dont know want to say :/
- -- Instances:
- local ss = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local TextBox = Instance.new("TextBox")
- local execute = Instance.new("TextButton")
- local clear = Instance.new("TextButton")
- --Properties:
- ss.Name = "ss"
- ss.Parent = game.CoreGui
- ss.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ss
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.Position = UDim2.new(0.406021893, 0, 0.23260437, 0)
- main.Size = UDim2.new(0, 400, 0, 232)
- main.Active = true
- main.Draggable = true
- title.Name = "title"
- title.Parent = main
- title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- title.Size = UDim2.new(0, 400, 0, 25)
- title.Font = Enum.Font.SourceSans
- title.Text = "SS executor"
- title.TextColor3 = Color3.fromRGB(255, 1, 5)
- title.TextScaled = true
- title.TextSize = 14.000
- title.TextWrapped = true
- TextBox.Parent = main
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.Position = UDim2.new(0.0149999997, 0, 0.136230603, 0)
- TextBox.Size = UDim2.new(0, 388, 0, 136)
- TextBox.ClearTextOnFocus = false
- 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(255, 255, 255)
- execute.Position = UDim2.new(0.0149999997, 0, 0.75, 0)
- execute.Size = UDim2.new(0, 189, 0, 50)
- execute.Font = Enum.Font.SourceSans
- execute.Text = "execute"
- execute.TextColor3 = Color3.fromRGB(38, 32, 221)
- execute.TextScaled = true
- execute.TextSize = 14.000
- execute.TextWrapped = true
- clear.Name = "clear"
- clear.Parent = main
- clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- clear.Position = UDim2.new(0.512499988, 0, 0.75, 0)
- clear.Size = UDim2.new(0, 189, 0, 50)
- clear.Font = Enum.Font.SourceSans
- clear.Text = "clear"
- clear.TextColor3 = Color3.fromRGB(48, 220, 209)
- 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