Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --))
- i just a normal guy with hack
- --((
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local TextBox = Instance.new("TextBox")
- local execute = Instance.new("TextButton")
- local clear = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.Active = true
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.BackgroundTransparency = 0.500
- main.Position = UDim2.new(0.417883217, 0, 0.165009946, 0)
- main.Size = UDim2.new(0, 471, 0, 275)
- main.Draggable = true
- TextBox.Parent = main
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.Position = UDim2.new(0.0148619954, 0, 0.0218181815, 0)
- TextBox.Size = UDim2.new(0, 456, 0, 198)
- 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.0297239907, 0, 0.778181791, 0)
- execute.Size = UDim2.new(0, 200, 0, 50)
- 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(255, 255, 255)
- clear.Position = UDim2.new(0.558386445, 0, 0.778181791, 0)
- clear.Size = UDim2.new(0, 200, 0, 50)
- 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
- -- Function
- 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