Advertisement
iiJosephCats205

LO

Apr 8th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. wait()
  2. local VanGui = Instance.new("ScreenGui")
  3. local Van = Instance.new("Frame")
  4. local idk = Instance.new("TextBox")
  5. local dsa = Instance.new("TextButton")
  6.  
  7. VanGui.Name = "ufo"
  8. VanGui.Parent = game.Players.LocalPlayer.PlayerGui
  9.  
  10. Van.Name = "ufo"
  11. Van.Parent = VanGui
  12. Van.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  13. Van.BorderColor3 = Color3.new(0, 0, 0)
  14. Van.Position = UDim2.new(0, 5, 0.8, 0)
  15. Van.Size = UDim2.new(0, 200, 0, 45)
  16.  
  17. idk.Name = "idk"
  18. idk.Parent = Van
  19. idk.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  20. idk.BorderColor3 = Color3.new(0, 0, 0)
  21. idk.Size = UDim2.new(1, 0, 0, 20)
  22. idk.Font = Enum.Font.SciFi
  23. idk.FontSize = Enum.FontSize.Size14
  24. idk.Text = "Username"
  25. idk.TextColor3 = Color3.new(1, 1, 1)
  26. idk.TextScaled = true
  27. idk.TextStrokeTransparency = 0
  28. idk.TextWrapped = true
  29.  
  30. dsa.Name = "dsa"
  31. dsa.Parent = Van
  32. dsa.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  33. dsa.BorderColor3 = Color3.new(0, 0, 0)
  34. dsa.Position = UDim2.new(0, 0, 1, -25)
  35. dsa.Size = UDim2.new(1, 0, 0, 25)
  36. dsa.Font = Enum.Font.SciFi
  37. dsa.FontSize = Enum.FontSize.Size14
  38. dsa.Text = "UFO"
  39. dsa.TextColor3 = Color3.new(1, 1, 1)
  40. dsa.TextScaled = true
  41. dsa.TextStrokeTransparency = 0
  42. dsa.TextWrapped = true
  43.  
  44.  
  45. dsa.MouseButton1Click:connect(function()
  46. Victim = idk.Text
  47. if game.Players:FindFirstChild(Victim) and game.Workspace:FindFirstChild('ufoparthaha') == nil then
  48. plr = game.Players:WaitForChild(Victim.Character) -- BY THE WAY the penis is a cylinder, with balls. I can't make the full -- script because of chat limit when i exploit.
  49. stick = Instance.new("Part", plr.Torso)
  50. c = Instance.new("CylinderMesh", stick)
  51. stick.Size = Vector3.new(2,8.2,2)
  52. stick.BrickColor = BrickColor.new("Pastel brown")
  53. stick.BottomSurface = "Smooth"
  54. stick.TopSurface = "Smooth"
  55. stick.Position = plr.Torso.Position
  56. wstick = Instance.new("Weld",plr.Torso)
  57. wstick.Part0 = wstick.Parent
  58. wstick.Part1 = stick
  59. wstick.C1 = CFrame.new(Vector3.new(0,3.5,-1.5)) * CFrame.Angles(80,0,0)
  60. ball1 = Instance.new("Part",plr)
  61. ball1.BrickColor = stick.BrickColor
  62. ball1.Shape = "Ball"
  63. ball1.Size = Vector3.new(3,3,3)
  64. wb1 = Instance.new("Weld",plr.Torso)
  65. wb1.Part0 = wstick.Part0
  66. wb1.Part1 = ball1
  67. ball1.BottomSurface = "Smooth"
  68. ball1.TopSurface = "Smooth"
  69. wb1.C1 = CFrame.new(Vector3.new(-0.5,1.5,0))
  70. ball2 = ball1:clone()
  71. ball2.Parent = plr
  72. wb2 = Instance.new("Weld",plr.Torso)
  73. wb2.Part0 = wstick.Part0
  74. wb2.Part1 = ball2
  75. wb2.C1 = CFrame.new(Vector3.new(0.5,1.5,0))
  76. end
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement