Advertisement
memberhero

Chat

May 4th, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. -- Chat talk
  2. --Also May Make You Unkillable In SB
  3. wait(1)
  4. plr = game.Players.LocalPlayer
  5. char = plr.Character
  6. mouse = plr:GetMouse()
  7. hum = char.Humanoid
  8. orange = Color3.new(0, 0, 0)
  9.  
  10. -- Functions
  11. base = Instance.new("ScreenGui",plr.PlayerGui)
  12. bbg = Instance.new("BillboardGui",plr.Character.Head)
  13. bbg.Size = UDim2.new(0,200,0,50)
  14. bbg.StudsOffset = Vector3.new(0,3,0)
  15. bbgTl = Instance.new("TextLabel",bbg)
  16. bbgTl.BackgroundTransparency = 1
  17. bbgTl.Size = UDim2.new(10,0,1,0)
  18. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  19. bbgTl.Font = "SciFi"
  20. bbgTl.Text = ""
  21. bbgTl.TextSize = 25
  22. bbgTl.TextStrokeColor3 = Color3.new(255,0,0)
  23. bbgTl.TextColor3 = orange
  24. bbgTl.TextStrokeTransparency = 0
  25. bbgTl.TextWrapped = true
  26. plr.Chatted:connect(function(msg)
  27. bbgTl.Text = msg
  28. wait(5)
  29. if bbgTl.Text == msg then
  30. bbgTl.Text = " "
  31. end
  32. end)
  33.  
  34. function Ghost()
  35. char["Left Arm"].Transparency = 0
  36. char["Right Arm"].Transparency = 0
  37. char["Left Leg"].Transparency = 0
  38. char["Right Leg"].Transparency = 0
  39. char.Torso.Transparency = 0
  40. char.Head.Transparency = 0
  41.  
  42. end
  43. Ghost()
  44.  
  45. -- Invinciblity Properties
  46. hum.Name = "Nothing"
  47. plr.Character.Nothing.MaxHealth = math.huge
  48. plr.Character.Nothing.Health = math.huge
  49.  
  50. forcefield = Instance.new("ForceField",char)
  51.  
  52. -- WalkSpeed Properties
  53. hum.WalkSpeed = "20"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement