Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local effect = Instance.new("Part")
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
- local player = game.Players.LocalPlayer
- local avatar = player.Character
- local sign = Instance.new("BillboardGui")
- sign.Adornee = avatar.Head
- sign.Parent = avatar.Head
- local torso = avatar.Torso
- local torsopos = torso.Position
- sign.StudsOffset=Vector3.new(0.5,2,0)
- sign.Size=UDim2.new(3,0,3,0)
- text=Instance.new("TextLabel")
- text.Text= "Furious"
- text.TextScaled = true
- text.TextStrokeTransparency = 0
- text.TextColor3 = Color3.new(255, 0, 0)
- text.TextStrokeColor3 = Color3.new(157, 0, 0)
- text.Size=UDim2.new(1,0,1,0)
- text.Position=UDim2.new(-0.125,0,-0.25,0)
- text.BackgroundTransparency = 1
- text.Parent=sign
- while true do
- wait()
- effect.Parent = avatar.Torso
- effect.Position = torsopos
- effect.CanCollide = false
- effect.Anchored = true
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement