Advertisement
Puppet213321

test

Jun 8th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2.     Character = Player.Character
  3.     local txt = Instance.new("BillboardGui", Character)
  4.     txt.Adornee = Character.Head
  5.     txt.Name = "_status"
  6.     txt.Size = UDim2.new(2, 0, 1.2, 0)
  7.     txt.StudsOffset = Vector3.new(-9, 8, 0)
  8.     local text = Instance.new("TextLabel", txt)
  9.     text.Size = UDim2.new(10, 0, 7, 0)
  10.     text.FontSize = "Size24"
  11.     text.TextScaled = true
  12.     text.TextTransparency = 0
  13.     text.BackgroundTransparency = 10
  14.     text.TextTransparency = 0
  15.     text.TextStrokeTransparency = 0
  16.     text.Font = "Arcade"
  17.     text.TextStrokeColor3 = Color3.new(0,0,255)
  18.         text.Text = "Mr.Pixels"
  19. wait(0.2)
  20.  
  21. Player = game:GetService("Players").LocalPlayer
  22. PlayerGui = Player.PlayerGui
  23. Cam = workspace.CurrentCamera
  24. Backpack = Player.Backpack
  25. Character = Player.Character
  26. Humanoid = Character.Humanoid
  27. Mouse = Player:GetMouse()
  28. RootPart = Character["HumanoidRootPart"]
  29. Torso = Character["Torso"]
  30. Head = Character["Head"]
  31. RightArm = Character["Right Arm"]
  32. LeftArm = Character["Left Arm"]
  33. RightLeg = Character["Right Leg"]
  34. LeftLeg = Character["Left Leg"]
  35. RootJoint = RootPart["RootJoint"]
  36. Neck = Torso["Neck"]
  37. RightShoulder = Torso["Right Shoulder"]
  38. LeftShoulder = Torso["Left Shoulder"]
  39. RightHip = Torso["Right Hip"]
  40. LeftHip = Torso["Left Hip"]
  41.  
  42. IT = Instance.new
  43. CF = CFrame.new
  44. VT = Vector3.new
  45. RAD = math.rad
  46. C3 = Color3.new
  47. UD2 = UDim2.new
  48. BRICKC = BrickColor.new
  49. ANGLES = CFrame.Angles
  50. EULER = CFrame.fromEulerAnglesXYZ
  51. COS = math.cos
  52. ACOS = math.acos
  53. SIN = math.sin
  54. ASIN = math.asin
  55. ABS = math.abs
  56. MRANDOM = math.random
  57. FLOOR = math.floor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement