Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- local gui=Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
- local b1=Instance.new("TextButton",gui)
- local b2=Instance.new("TextButton",gui)
- local re=Instance.new("TextButton",gui)
- local sp=Instance.new("TextButton",gui)
- local mu=Instance.new("TextButton",gui)
- local playb=Instance.new("TextButton",gui)
- local stopb=Instance.new("TextButton",gui)
- local n=Instance.new("TextBox",gui)
- local music=Instance.new("Sound",gui)
- music.Name="musicc"
- gui.ResetOnSpawn=false
- gui.Name="invisible"
- b1.Name="invis"
- b2.Name="notinvis"
- re.Name="guiremove"
- sp.Name="speed"
- mu.Name="music"
- b1:TweenPosition("{0.812, 0},{0.068, 0}","Out","Elastic",0.8)
- b2:TweenPosition("{0.812, 0},{0.189, 0}","Out","Elastic",0.8)
- re:TweenPosition("{0.812, 0},{0.015, 0}","Out","Elastic",0.8)
- sp:TweenPosition("{0.812, 0},{0.300, 0}","Out","Elastic",0.8)
- mu:TweenPosition("{0.812, 0},{0.400, 0}","Out","Elastic",0.8)
- b1:TweenSize("{0, 200},{0, 50}","In","Bounce",0.5)
- b2:TweenSize("{0, 200},{0, 50}","In","Bounce",0.5)
- re:TweenSize("{0, 100},{0, 25}","In","Bounce",0.5)
- sp:TweenSize("{0, 150},{0, 50}","In","Bounce",0.5)
- mu:TweenSize("{0, 150},{0, 50}","In","Bounce",0.5)
- b1.TextScaled=true
- b2.TextScaled=true
- re.TextScaled=true
- sp.TextScaled=true
- mu.TextScaled=true
- b1.Visible=true
- b2.Visible=true
- re.Visible=true
- sp.Visible=true
- mu.Visible=true
- b1.Text="Remove Limbs"
- b2.Text="RestCharacter"
- re.Text="RemoveGui"
- sp.Text="FastRun"
- mu.Text="AddMusic"
- local p=game.Players.LocalPlayer.Character
- b1.MouseButton1Click:Connect(function()
- p.LeftUpperLeg:Destroy()
- p.LeftLowerLeg:Destroy()
- p.LeftFoot:Destroy()
- p.RightUpperLeg:Destroy()
- p.RightLowerLeg:Destroy()
- p.RightFoot:Destroy()
- p.LeftUpperArm:Destroy()
- p.LeftLowerArm:Destroy()
- p.LeftHand:Destroy()
- p.RightUpperArm:Destroy()
- p.RightLowerArm:Destroy()
- p.RightHand:Destroy()
- end)
- b2.MouseButton1Click:Connect(function()
- p.Humanoid.Health=0
- end)
- re.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.PlayerGui.invisible:Destroy()
- end)
- sp.MouseButton1Click:Connect(function()
- p.Humanoid.WalkSpeed=80
- end)
- mu.MouseButton1Click:Connect(function()
- mu.Visible=false
- n:TweenPosition("{0.384, 0},{0.047, 0}","Out","Elastic",0.8)
- n:TweenSize("{0, 245},{0, 44}","In","Bounce",0.25)
- playb:TweenPosition("{0.45, 0},{0.161, 0}","Out","Elastic",0.8)
- playb:TweenSize("{0, 105},{0, 25}","In","Bounce",0.25)
- stopb:TweenPosition("{0.45, 0},{0.210, 0}","Out","Elastic",0.8)
- stopb:TweenSize("{0, 105},{0, 25}","In","Bounce",0.25)
- n.Visible=true
- playb.Visible=true
- stopb.Visible=true
- n.Selectable=true
- n.Active=true
- n.PlaceholderText="http://www.roblox.com/asset/?id="
- n.Text="http://www.roblox.com/asset/?id="
- --n.PlaceholderColor3=Color3.new"85, 170, 255"
- playb.Text="Play"
- stopb.Text="Stop" --RemoveMusicGui
- music.Playing=false
- while true do
- wait(2)
- music.SoundId=n.Text
- end
- end)
- playb.MouseButton1Click:Connect(function()
- music:Play()
- end)
- stopb.MouseButton1Click:Connect(function()
- n:TweenPosition("{-0.172, 0},{0.078, 0}","Out","Elastic",0.1)
- n:TweenSize("{0, 100},{0, 10}","In","Bounce",0.1)
- playb:TweenPosition("{-0.083, 0},{0.189, 0}","Out","Elastic",0.1)
- playb:TweenSize("{0, 80},{0, 5}","In","Bounce",0.1)
- stopb:TweenPosition("{-0.083, 0},{0.189, 0}","Out","Elastic",0.1)
- stopb:TweenSize("{0, 80},{0, 5}","In","Bounce",0.1)
- n.Visible=false
- playb.Visible=false
- mu.Visible=true
- stopb.Visible=false
- music:Stop()
- end)
Advertisement
Advertisement