--Created by Grates char = game.Players.LocalPlayer.Character local MyMouse = game.Players.LocalPlayer:GetMouse() CV="Bright red" function fallen() char.Humanoid:Destroy() local s = Instance.new("Sound") s.Name = "fall" s.SoundId = "http://www.roblox.com/asset/?id=130768088" s.Volume = 1 s.Looped = false s.archivable = false s.Parent = game.Workspace wait(0) s:play() end function gui1() local txt = Instance.new("BillboardGui", char) txt.Adornee = char.Head txt.Name = "Fallen" txt.Size = UDim2.new(4, 0, 2.5, 0) txt.StudsOffset = Vector3.new(-4, 2, 0) local text = Instance.new("TextLabel", txt) text.Text = "I've fallen, and I can't get up!" text.Size = UDim2.new(3, 0, 0.5, 0) text.FontSize = "Size18" text.TextScaled = true text.TextTransparency = 0 text.BackgroundTransparency = 1 text.TextTransparency = 0 text.TextStrokeTransparency = 0 text.Font = "SourceSansBold" text.TextStrokeColor3 = Color3.new(1,1,1) end MyMouse.KeyDown:connect(function(key) if string.lower(key) == "m" then gui1() fallen() end end)