Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local killthin = Instance.new("ScreenGui")
- local idk = Instance.new("Frame")
- local idc = Instance.new("TextButton")
- local ik = Instance.new("TextBox")
- -- Properties
- killthin.Name = "kill thin"
- killthin.Parent = game.Players.LocalPlayer.PlayerGui
- idk.Name = "idk"
- idk.Parent = killthin
- idk.Active = true
- idk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- idk.Draggable = true
- idk.Position = UDim2.new(0.252263904, 0, 0.215946853, 0)
- idk.Selectable = true
- idk.Size = UDim2.new(0, 233, 0, 305)
- idc.Name = "idc"
- idc.Parent = idk
- idc.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- idc.Position = UDim2.new(0.0708154514, 0, 0.511475384, 0)
- idc.Size = UDim2.new(0, 200, 0, 50)
- idc.Font = Enum.Font.SourceSans
- idc.Text = "kil "
- idc.TextColor3 = Color3.new(0, 1, 1)
- idc.TextScaled = true
- idc.TextSize = 14
- idc.TextWrapped = true
- idc.MouseButton1Down:connect(function()
- if game.Workspace.FilteringEnabled == true then
- killthin(ik.Text)
- elseif game.Workspace.FilteringEnabled ~= true then
- idc(ik.Text)
- end
- end)
- ik.Name = "ik"
- ik.Parent = idk
- ik.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- ik.Position = UDim2.new(0.0729613751, 0, 0.288524598, 0)
- ik.Size = UDim2.new(0, 200, 0, 50)
- ik.Font = Enum.Font.SourceSans
- ik.Text = "type others"
- ik.TextColor3 = Color3.new(0, 1, 1)
- ik.TextScaled = true
- ik.TextSize = 14
- ik.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement