DrakerMaker

Sonic

May 26th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local avatar = player.Character
  4.  
  5. local sign = Instance.new("BillboardGui")
  6.  
  7. sign.Adornee = avatar.Head
  8.  
  9. sign.Parent = avatar.Head
  10.  
  11. avatar.Humanoid.WalkSpeed = 90
  12.  
  13. avatar.Humanoid.JumpPower= 50
  14.  
  15. local sound = Instance.new("Sound")
  16.  
  17. sound.Looped = true
  18.  
  19. sound.Volume = 2
  20.  
  21. sound.Parent = avatar.Head
  22.  
  23. sound:Play()
  24.  
  25. sign.StudsOffset=Vector3.new(0.5,2,0)
  26. sign.Size=UDim2.new(3,0,3,0)
  27. text=Instance.new("TextLabel")
  28. text.Text= "Sonic"
  29. text.TextScaled = true
  30. text.TextStrokeTransparency = 0
  31. text.TextColor3 = Color3.new(0, 132, 255)
  32. text.TextStrokeColor3 = Color3.new(0, 67, 127)
  33. text.Size=UDim2.new(1,0,1,0)
  34. text.Position=UDim2.new(-0.125,0,-0.25,0)
  35. text.BackgroundTransparency = 1
  36. text.Parent=sign
Add Comment
Please, Sign In to add comment