-- Kiss The Ground Script SUPER OP!!!!!!! 🤑🤑😫😫😫😫😫😝 local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local screenGui local function createKissTheGroundButton() if screenGui then screenGui:Destroy() end screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") local kissButton = Instance.new("TextButton") kissButton.Parent = screenGui kissButton.Size = UDim2.new(0, 160, 0, 50) kissButton.Position = UDim2.new(0, 10, 1, -120) kissButton.Text = "Kiss The Ground: Off" kissButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) kissButton.TextColor3 = Color3.fromRGB(255, 255, 255) kissButton.Font = Enum.Font.SourceSans kissButton.TextSize = 24 local isKissingGround = false local function toggleKissTheGround() local rootPart = character:FindFirstChild("HumanoidRootPart") if humanoid and rootPart then if isKissingGround then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp) humanoid.AutoRotate = true kissButton.Text = "Kiss The Ground: Off" rootPart.CFrame = rootPart.CFrame * CFrame.Angles(0, 0, 0) else humanoid:ChangeState(Enum.HumanoidStateType.Physics) humanoid.Sit = false humanoid.AutoRotate = false rootPart.CFrame = rootPart.CFrame * CFrame.Angles(math.rad(-90), 0, math.rad(180)) rootPart.Velocity = Vector3.new(0, 0, 0) kissButton.Text = "Kiss The Ground: On" end isKissingGround = not isKissingGround end end kissButton.MouseButton1Click:Connect(toggleKissTheGround) end createKissTheGroundButton() player.CharacterAdded:Connect(function(newCharacter) character = newCharacter humanoid = character:WaitForChild("Humanoid") wait(0.03) createKissTheGroundButton() end)