Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- math.randomseed(tick())
- local plr = owner; local char = plr.Character;
- if not char then error("Your character does not exist.") end
- function writeToObject(name,value,typ)
- local stringV = Instance.new(typ.."Value")
- stringV.Name = name
- stringV.Value = value
- return stringV
- end
- local hum = char:FindFirstChildOfClass("Humanoid")
- char["Body Colors"]:Destroy()
- --[[local txt = Instance.new("BillboardGui", char.Head)
- txt.Adornee = nil
- txt.Name = "NameDetect"
- txt.Size = UDim2.new(4, 0, 1.2, 0)
- txt.StudsOffset = Vector3.new(-8, 5.333333333333333, 0)
- local text = Instance.new("TextLabel", txt)
- text.Size = UDim2.new(5, 0, 3.5, 0)
- text.FontSize = "Size8"
- text.TextScaled = true
- text.TextTransparency = 0
- text.BackgroundTransparency = 1
- text.TextTransparency = 0
- text.TextStrokeTransparency = 0
- text.Font = Enum.Font.Bodoni
- text.TextStrokeColor3 = Color3.new(0, 0, 0)
- text.TextColor3 = Color3.new(1, 0, 0)
- text.Text = "Now this is your soul... isn't it?"--]]
- local music = Instance.new("Sound",char.Torso)
- music.SoundId = "rbxassetid://2865827484"
- music.Volume = "inf"
- music.Looped = true
- music:Play()
- for _,i in pairs(char:GetChildren())do
- if i.ClassName=="CharacterMesh"then
- i:Destroy()
- end
- end
- local weld1 = Instance.new("Weld",char)
- weld1.Part0 = char["Left Arm"]
- weld1.Part1 = char.Torso
- weld1.C0 = CFrame.new(-1.5,-0.25,0)
- local weld2 = Instance.new("Weld",char)
- weld2.Part0 = char["Right Arm"]
- weld2.Part1 = char.Torso
- weld2.C0 = CFrame.new(1.5,-0.25,0)
- local speed = 0.5
- while true do
- for _ = 1,10 do
- weld1.C0 = weld1.C0 + Vector3.new(0,0.05,0)
- weld2.C0 = weld2.C0 + Vector3.new(0,0.05,0)
- speed = speed - 0.03
- wait(speed/6)
- end
- for _ = 1,5 do
- weld1.C0 = weld1.C0 + Vector3.new(0,0.05,0)
- weld2.C0 = weld2.C0 + Vector3.new(0,0.05,0)
- speed = speed + 0.03
- wait(speed/6)
- end
- for _ = 1,10 do
- weld1.C0 = weld1.C0 - Vector3.new(0,0.05,0)
- weld2.C0 = weld2.C0 - Vector3.new(0,0.05,0)
- speed = speed - 0.03
- wait(speed/6)
- end
- for _ = 1,5 do
- weld1.C0 = weld1.C0 - Vector3.new(0,0.05,0)
- weld2.C0 = weld2.C0 - Vector3.new(0,0.05,0)
- speed = speed + 0.03
- wait(speed/6)
- end
- wait()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement