Advertisement
SlappyDappyCrappy

dddd

Jul 28th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. Player = game:GetService("Players").LocalPlayer
  2. Character = Player.Character
  3. torso = Character.Torso
  4. frank = Instance.new("Model", Character)
  5. mouse = game.Players.LocalPlayer:GetMouse()
  6.         local tow = Instance.new("Part", frank)
  7.         local jeff = Instance.new("Weld", tow)
  8.         local mesh = Instance.new("SpecialMesh", tow)
  9.         local bubble = Instance.new("ForceField", Character)
  10.                 bubble.Visible = false
  11.         tow.Anchored = false
  12.         tow.CanCollide = true
  13.         tow.Transparency = .9
  14.         tow.Material = "Neon"
  15.                 tow.TopSurface = "Smooth"
  16.                 tow.BottomSurface = "Smooth"
  17.                 tow.RightSurface = "Smooth"
  18.                 tow.LeftSurface = "Smooth"
  19.                 tow.FrontSurface = "Smooth"
  20.                 tow.BackSurface = "Smooth"
  21.         tow.Size = Vector3.new(4.09, 5.09, 3)
  22.         wait(.1)
  23.         tow.BrickColor = torso.BrickColor
  24.         jeff.Part1 = torso
  25.         jeff.Part0 = tow
  26.         mesh.MeshType = "Sphere"
  27.         mesh.Scale = Vector3.new(1.5,1.5,2)
  28.         tow.CustomPhysicalProperties = true
  29.         tow.FrictionWeight = 0
  30.         tow.ElasticityWeight = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement