Advertisement
DrakerMaker

Furious

May 31st, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. local effect = Instance.new("Part")
  2.  
  3. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
  4.  
  5. local player = game.Players.LocalPlayer
  6.  
  7. local avatar = player.Character
  8.  
  9. local sign = Instance.new("BillboardGui")
  10.  
  11. sign.Adornee = avatar.Head
  12.  
  13. sign.Parent = avatar.Head
  14.  
  15. local torso = avatar.Torso
  16.  
  17. local torsopos = torso.Position
  18.  
  19.  
  20. sign.StudsOffset=Vector3.new(0.5,2,0)
  21. sign.Size=UDim2.new(3,0,3,0)
  22. text=Instance.new("TextLabel")
  23. text.Text= "Furious"
  24. text.TextScaled = true
  25. text.TextStrokeTransparency = 0
  26. text.TextColor3 = Color3.new(255, 0, 0)
  27. text.TextStrokeColor3 = Color3.new(157, 0, 0)
  28. text.Size=UDim2.new(1,0,1,0)
  29. text.Position=UDim2.new(-0.125,0,-0.25,0)
  30. text.BackgroundTransparency = 1
  31. text.Parent=sign
  32.  
  33. while true do
  34. wait()
  35. effect.Parent = avatar.Torso
  36. effect.Position = torsopos
  37. effect.CanCollide = false
  38. effect.Anchored = true
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement