Advertisement
OofNoob

testin my kill gui rn xd

Mar 13th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. -- Objects
  2.  
  3. local killthin = Instance.new("ScreenGui")
  4. local idk = Instance.new("Frame")
  5. local idc = Instance.new("TextButton")
  6. local ik = Instance.new("TextBox")
  7.  
  8. -- Properties
  9.  
  10. killthin.Name = "kill thin"
  11. killthin.Parent = game.Players.LocalPlayer.PlayerGui
  12.  
  13. idk.Name = "idk"
  14. idk.Parent = killthin
  15. idk.Active = true
  16. idk.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  17. idk.Draggable = true
  18. idk.Position = UDim2.new(0.252263904, 0, 0.215946853, 0)
  19. idk.Selectable = true
  20. idk.Size = UDim2.new(0, 233, 0, 305)
  21.  
  22. idc.Name = "idc"
  23. idc.Parent = idk
  24. idc.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  25. idc.Position = UDim2.new(0.0708154514, 0, 0.511475384, 0)
  26. idc.Size = UDim2.new(0, 200, 0, 50)
  27. idc.Font = Enum.Font.SourceSans
  28. idc.Text = "kil "
  29. idc.TextColor3 = Color3.new(0, 1, 1)
  30. idc.TextScaled = true
  31. idc.TextSize = 14
  32. idc.TextWrapped = true
  33.  
  34. idc.MouseButton1Down:connect(function()
  35. if game.Workspace.FilteringEnabled == true then
  36. killthin(ik.Text)
  37. elseif game.Workspace.FilteringEnabled ~= true then
  38. idc(ik.Text)
  39. end
  40. end)
  41.  
  42. ik.Name = "ik"
  43. ik.Parent = idk
  44. ik.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  45. ik.Position = UDim2.new(0.0729613751, 0, 0.288524598, 0)
  46. ik.Size = UDim2.new(0, 200, 0, 50)
  47. ik.Font = Enum.Font.SourceSans
  48. ik.Text = "type others"
  49. ik.TextColor3 = Color3.new(0, 1, 1)
  50. ik.TextScaled = true
  51. ik.TextSize = 14
  52. ik.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement