-- Objects local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local MEMEGUI = Instance.new("TextButton") local RADIO = Instance.new("TextButton") local BLOCKSPAM = Instance.new("TextButton") local GrabKnifeV3 = Instance.new("TextButton") -- Properties ScreenGui.Parent = game.StarterGui Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.new(0, 0, 0) Frame.BackgroundTransparency = 0.55000001192093 Frame.Draggable = true Frame.Position = UDim2.new(0.0470879786, 0, 0.158102781, 0) Frame.Size = UDim2.new(0, 415, 0, 320) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.new(0, 0, 0) TextLabel.BackgroundTransparency = 0.85000002384186 TextLabel.Size = UDim2.new(0, 415, 0, 50) TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeYY TextLabel.Font = Enum.Font.Arcade TextLabel.FontSize = Enum.FontSize.Size96 TextLabel.Text = "H3VL'S Script HubV1" TextLabel.TextColor3 = Color3.new(0.333333, 0, 1) TextLabel.TextScaled = true TextLabel.TextSize = 67 TextLabel.TextWrapped = true MEMEGUI.Name = "MEMEGUI" MEMEGUI.Parent = Frame MEMEGUI.BackgroundColor3 = Color3.new(1, 1, 1) MEMEGUI.BackgroundTransparency = 1 MEMEGUI.Position = UDim2.new(0, 0, 0.15625, 0) MEMEGUI.Size = UDim2.new(0, 200, 0, 50) MEMEGUI.Font = Enum.Font.Arcade MEMEGUI.FontSize = Enum.FontSize.Size14 MEMEGUI.Text = "MEMEGUI" MEMEGUI.TextColor3 = Color3.new(0.678431, 0.12549, 0.631373) MEMEGUI.TextScaled = true MEMEGUI.TextSize = 14 MEMEGUI.TextStrokeColor3 = Color3.new(1, 1, 1) MEMEGUI.TextStrokeTransparency = 0 MEMEGUI.TextWrapped = true RADIO.Name = "RADIO" RADIO.Parent = Frame RADIO.BackgroundColor3 = Color3.new(0, 0, 1) RADIO.BackgroundTransparency = 4 RADIO.Position = UDim2.new(0.518072307, 0, 0.15625, 0) RADIO.Size = UDim2.new(0, 200, 0, 50) RADIO.Font = Enum.Font.Arcade RADIO.FontSize = Enum.FontSize.Size14 RADIO.Text = "RADIO" RADIO.TextColor3 = Color3.new(1, 0, 0) RADIO.TextScaled = true RADIO.TextSize = 14 RADIO.TextStrokeColor3 = Color3.new(1, 1, 1) RADIO.TextStrokeTransparency = 0 RADIO.TextWrapped = true RADIO.MouseButton1Down:connect(function() local s = Instance.new("ScreenGui", game.CoreGui) local f = Instance.new("Frame", s) local mselect = Instance.new("TextButton", f) local mbox = Instance.new("TextBox", f) local toggle = false local Player = game.Players.LocalPlayer local Character = Player.Character f.Size = UDim2.new(0,300,0,250) f.BorderSizePixel = 0 f.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961) f.Position = UDim2.new(0.5,-150,0.5,-125) f.Active = true f.Draggable = true mbox.Size = UDim2.new(0,250,0,50) mbox.Position = UDim2.new(0,25,0.1,0) mbox.BorderSizePixel = 0 mbox.Text = "Music ID Here:" mbox.Font = "SourceSansBold" mbox.TextColor3 = Color3.new(255, 255,255) mbox.BackgroundColor3 = Color3.new(1, 0.666667, 0) mbox.FontSize = "Size18" mbox.ZIndex = 10 mselect.Size = UDim2.new(0,250,0,50) mselect.Position = UDim2.new(0,25,0.6,0) mselect.BorderSizePixel = 0 mselect.Text = "Play Music" mselect.Font = "SourceSansBold" mselect.TextColor3 = Color3.new(255,255,255) mselect.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1) mselect.FontSize = "Size18" mselect.ZIndex = 10 mselect.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge -- this is god if toggle == false then loadPart() toggle = true elseif toggle == true then loadPart() toggle = false end end) function loadPart() for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if v.Name == "MusicItem" and v.ClassName == "Part" then v:Remove() end end local Part = Instance.new("Part", game.Players.LocalPlayer.Character) Part.CanCollide = false Part.Shape = "Block" Part.Anchored = false Part.Locked = true Part.Name = "MusicItem" Part.Transparency = 0 Part.Material = "Neon" Part.BrickColor = BrickColor.new("Royal purple") --Cool Colors CGA brown and Royal purple local CylinderMesh = Instance.new("CylinderMesh", Part) CylinderMesh.Scale = Vector3.new(1.5,.2,1.5) local Sound = Instance.new("Sound", Part) Sound.SoundId = "https://www.roblox.com/asset/?id="..mbox.Text Sound.EmitterSize = math.huge Sound.MaxDistance = math.huge Sound.Looped = true Sound.Pitch = 1 Sound.Name = "Sound" Sound.Volume = 10 Sound:Play() Part.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(0,-2.9,0) local bp = Instance.new("BodyPosition", Part) bp.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(0, -2.9, 0).p bp.MaxForce = Vector3.new(10000,10000,10000) bp.P = 100000 while true do wait() bp.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(0, -2.9, 0).p local alg = math.floor(Sound.PlaybackLoudness)/50 CylinderMesh.Scale = Vector3.new(.6+alg,.2,.6+alg) end end end) BLOCKSPAM.Name = "BLOCKSPAM" BLOCKSPAM.Parent = Frame BLOCKSPAM.BackgroundColor3 = Color3.new(1, 1, 1) BLOCKSPAM.BackgroundTransparency = 8 BLOCKSPAM.Position = UDim2.new(0, 0, 0.462500006, 0) BLOCKSPAM.Size = UDim2.new(0, 200, 0, 50) BLOCKSPAM.Font = Enum.Font.SourceSans BLOCKSPAM.FontSize = Enum.FontSize.Size14 BLOCKSPAM.Text = "BLOCK SPAM" BLOCKSPAM.TextScaled = true BLOCKSPAM.TextSize = 14 BLOCKSPAM.TextStrokeColor3 = Color3.new(1, 1, 1) BLOCKSPAM.TextStrokeTransparency = 0 BLOCKSPAM.TextWrapped = true BLOCKSPAM.MouseButton1Down:connect(function() while true do wait() Instance.new("Part",Workspace) end) GrabKnifeV3.Name = "Grab Knife V3" GrabKnifeV3.Parent = Frame GrabKnifeV3.BackgroundColor3 = Color3.new(1, 1, 1) GrabKnifeV3.BackgroundTransparency = 4 GrabKnifeV3.BorderColor3 = Color3.new(1, 1, 1) GrabKnifeV3.BorderSizePixel = 78 GrabKnifeV3.Position = UDim2.new(0.518072307, 0, 0.462500006, 0) GrabKnifeV3.Size = UDim2.new(0, 200, 0, 50) GrabKnifeV3.Font = Enum.Font.Arcade GrabKnifeV3.FontSize = Enum.FontSize.Size14 GrabKnifeV3.Text = "Grab KnifeV3" GrabKnifeV3.TextColor3 = Color3.new(1, 1, 0) GrabKnifeV3.TextScaled = true GrabKnifeV3.TextSize = 14 GrabKnifeV3.TextWrapped = true