Advertisement
MarcAndrew

Untitled

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