Advertisement
TheFlamingBlaster

n

Aug 26th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. player = game.Players.LocalPlayer
  2. local hopper = Instance.new("HopperBin",player.Backpack)
  3. character = player.Character
  4. torso= character.Torso
  5. head = character.Head
  6. -- these just help if you want to kill yourself or something
  7. clicked = false
  8. function OB1D(mouse)
  9. print(":D")
  10. end
  11.  
  12. local chat = ""
  13. player.Chatted:connect(function(c) chat = c end)
  14. function s(mouse)
  15. delay(0.05,function() hopper:Remove() end)
  16. cam = game.Workspace.CurrentCamera
  17. cam.CameraType = "Fixed"
  18. cam.CameraSubject = nil
  19. player.Character = nil
  20.  
  21. local coro = coroutine.resume(coroutine.create(function()while wait() do local p = Instance.new("Part",workspace) p.Anchored = true p.CFrame = cam.Focus p.Anchored = true p.CFrame = CFrame.new(p.Position.X,p.Position.Y - 5, p.Position.Z) local b = Instance.new("BillboardGui",p) b.Size = UDim2.new(0,200,0,50) b.StudsOffset = Vector3.new(0,3,0) local txt = Instance.new("TextLabel",b) txt.Size = UDim2.new(1,0,1,0) txt.BackgroundTransparency = 1 txt.Text = chat delay(wait(),function() p:Remove() end) end end))
  22. mouse.Button1Down:connect(function () OB1D(mouse) end)
  23.  
  24. end
  25.  
  26. hopper.Selected:connect(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement